diff --git a/README.KSYMS b/README.KSYMS new file mode 100644 index 00000000..ee3f39eb --- /dev/null +++ b/README.KSYMS @@ -0,0 +1,6 @@ +This file is a place holder for the kernel-syms{,-rt} package. It is used +to group build dependencies for all kernel flavors. + +The KMP build process will build KMPs against all installed kernel flavors +automatically. If you don't need to build against other flavors than the +ones you've already installed - it is safe to uninstall this package. diff --git a/README.SUSE b/README.SUSE new file mode 100644 index 00000000..940447ea --- /dev/null +++ b/README.SUSE @@ -0,0 +1,471 @@ +WORKING WITH THE SUSE 2.6.x KERNEL SOURCES + +Andreas Gruenbacher , SUSE Labs, 2003, 2004, 2005, 2006 +Michal Marek , SUSE Labs, 2010 + + +This document gives an overview of how SUSE Linux kernels are +created, and describes tasks like building individual kernels +and creating external kernel modules. + +A companion HOWTO that describes how to build driver update disks (among +other things) is available at: + + http://developer.novell.com/wiki/index.php/Creating_a_Driver_Update_Disk_%28DUD%29 + + +TABLE OF CONTENTS + + Overview + Compiling your own kernel + Building additional (external) modules + Supported vs. unsupported modules + Patch selection mechanism + Where to find configuration files + How to configure the kernel sources + Module load paths + + +OVERVIEW + +The kernels for SUSE are generated from the vanilla Linux kernel sources +found at http://ftp.kernel.org, on top of which a number of patches are +applied. The resulting kernel source tree is configured and built, +resulting in a binary kernel. + +The add-on patches and configuration files are maintained in +a GIT repository at + + http://gitorious.org/opensuse/kernel-source + +A script (scripts/tar-up.sh) packs up the files in the repository in a +form suitable for rpmbuild. When building the RPM packages, the +following binary packages get created: + + * kernel-source + + The kernel source tree, generated by unpacking the vanilla kernel + sources and applying the patches. The kernel sources are used by + a number of other packages. They can also be used for compiling + additional kernel modules. + + * kernel-$FLAVOR + + A number of binary kernels (for example, kernel-default for + uniprocessor machines, kernel-smp for smp machines, etc.). These + packages are all generated from the same kernel sources, and + differ in the kernel configurations used. + + * kernel-$FLAVOR-base + + A subset of kernel-$FLAVOR, for use in paravirtualized quests that + only require a few device and filesystem drivers. + + * kernel-$FLAVOR-devel + + The files used for generating kernel module packages for use with + kernel-$FLAVOR. + + * kernel-syms + + A meta package that pulls in the relevant kernel-$FLAVOR-devel + packages for a given architecture. + + +The repository contains the configuration files (.config) for all SUSE +kernel flavors. All configuration files are included in the +kernel-source package (see WHERE TO FIND CONFIGURATION FILES below). + + +In the installed system, the kernel-source package installs files in the +following directories: + + + * /usr/src/linux-$VERSION-$RELEASE/ + + The kernel sources. + + * /usr/src/linux + + A symbolic link to /usr/src/linux-$VERSION-$RELEASE. + + * /usr/src/linux-$VERSION-$RELEASE-obj/$ARCH/$FLAVOR/ + + Kernel build object files for one kernel flavor. These + files are used for compiling additional kernel modules. + + * /usr/src/linux-obj + + A symbolic link to /usr/src/linux-$VERSION-$RELEASE-obj/$ARCH/$FLAVOR. + + * /usr/share/doc/packages/kernel-source/ + + This document and an external kernel module example. + + * /etc/init.d/running-kernel + + Init script that adapts the kernel sources in /usr/src/linux to + the running kernel. + + +COMPILING YOUR OWN KERNEL + +The kernel sources are found in the kernel-source package. The +recommended way to produce a binary kernel is: + + (1) Install kernel-source. Change to the /usr/src/linux directory. + + (2) Create a build directory for use in configuring and building + the kernel. Using /usr/src/linux directly requires root priviledges + and will cause problems if you need to build kernel modules for + other installed kernels. + + (3) Configure the kernel (for example, ``make -C /usr/src/linux + O=$(pwd) oldconfig'' or ``make -C /usr/src/linux O=$(pwd) cloneconfig'', + see HOW TO CONFIGURE THE KERNEL SOURCES). + + (4) Build the kernel and all its modules (``make''). + + (5) Make sure that /etc/modprobe.d/unsupported-modules contains + + allow_unsupported_modules 1 + + otherwise modprobe will refuse to load any modules. + + (6) Install the kernel and the modules (``make modules_install'', + followed by ``make install''). This will automatically create + an initrd for the new kernel as well (see ``mkinitrd -h''). + + (7) Add the kernel to the boot manager. When using lilo, run ``lilo'' + to update the boot map. + +Instead of building binary kernels by hand, you can also build +one of the kernel-$FLAVOR packages using RPM. + + +BUILDING ADDITIONAL (EXTERNAL) MODULES + +A single binary kernel module generally only works for a specific +version of the kernel source tree, for a specific architecture and +configuration. This means that for each binary kernel that SUSE ships, a +custom module must be built. This requirement is to some extent relaxed +by the modversion mechanism: modversions attach a checksum to each +symbol (function or variable) exported to modules by the kernel. This +allows to use kernel modules that have been built for a kernel with a +different version or release number in many cases, as long as none of +the symbols the module uses have changed between the two kernel +versions. + +When releasing maintenance or security update kernels for a specific +product, we carefully try to keep the kernel ABI stable. Despite this, +we sometimes have no choice but to break binary compatibility. In this +case, those kernel modules must be rebuilt. + +Additional kernel modules for one of the SUSE kernel flavors can be +built in three different ways: + + (1) by configuring the kernel sources in a separate build directory + (see HOW TO CONFIGURE THE KERNEL SOURCES), or + + (2) by using one of the standard configurations in + /usr/src/linux-obj/$ARCH/$FLAVOR, or + + (3) by creating a Kernel Module Package (KMP) as described in the + Kernel Module Packages Manual, http://www.suse.de/~agruen/KMPM/. + + +The first method involves the following steps: + + (1) Install the kernel-source package. + + (2) Configure the kernel, see HOW TO CONFIGURE THE KERNEL SOURCES. + + (3) Create files required for compiling external modules: + ``make scripts'' and ``make prepare''. + + (4) Compile the module(s) by changing into the module source directory + and typing ``make -C $(your_build_dir) M=$(pwd)''. + + (5) Install the module(s) by typing + ``make -C $(your_build_dir) M=$(pwd) modules_install''. + + +The second method involves the following steps: + + (1) Install the kernel-source package. + + (2) Install kernel-syms.$ARCH.rpm. This package is necessary for + symbol version information (CONFIG_MODVERSIONS). + + (3) Compile the module(s) by changing into the module source directory + and typing ``make -C /usr/src/linux-obj/$ARCH/$FLAVOR M=$(pwd)''. + Substitute $ARCH and $FLAVOR with the architecture and flavor + for which to build the module(s). + + If the installed kernel sources match the running kernel, you + can build modules for the running kernel by using the path + /lib/modules/$(uname -r)/build as the -C option in the above + command. (build is a symlink to /usr/src/linux-obj/$ARCH/$FLAVOR). + + Starting with SuSE Linux 9.2 / SLES9 Service Pack 1, the + modversion information for the running kernel is also + contained in the kernel-$FLAVOR packages, and so for building + modules for the running kernel, the kernel-syms package is no + longer required. + + (4) Install the module(s) with + ``make -C /usr/src/linux-obj/$ARCH/$FLAVOR M=$(pwd) modules_install''. + + +Whenever building modules, please use the kernel build infrastructure as +much as possible, and do not try to circumvent it. The +Documentation/kbuild directory in the kernel sources documents kbuild +makefiles. + +Please take a look at the demo module installed under +/usr/share/doc/packages/kernel-source for a simple example of an Kernel +Module Package (KMP). + + +SUPPORTED VS. UNSUPPORTED MODULES + +As an extension to the mainline kernel, modules can be tagged as +supported (directly by SUSE, or indirectly by a third party) or +unsupported. Modules which are known to be flakey or for which SUSE does +not have the necessary expertise are marked as unsupported. Modules for +which SUSE has third-party support agreements are marked as externally +supported. Modules for which SUSE provides direct support are marked as +supported. + +The support status of a module can be queried with the modinfo tool. +Modinfo will report one of the following: + + - direct support by SUSE: "supported: yes" + - third-party support: "supported: external" + - unsupported modules: no supported tag. + +At runtime, the setting of the" unsupported" kernel command line +parameter and /proc/sys/kernel/unsupported determines whether +unsupported modules can be loaded or not, and whether or not loading an +unsupported module causes a warning in the system log: + + 0 = only allow supported modules, + 1 = warn when loading unsupported modules, + 2 = don't warn. + +Irrespective of this setting, loading an externally supported or unsupported +module both set a kernel taint flag. The taint flags are included in +Oopses. The taint status of the kernel can be inspected in +/proc/sys/kernel/tainted: Bits 0 to 4 have the following meanings: + + bit 0 = a module with a GPL-incompatible license was loaded (tainted & 1), + bit 1 = module load was enforced (tainted & 2), + bit 2 = an SMP-unsafe module was loaded (tainted & 4), + bit 3 = (reserved), + bit 4 = an unsupported module was loaded (tainted & 16), + bit 5 = a module with third-party support was loaded (tainted & 32). + bit 10 = a machine check exception has occurred (taint & 1024; x86_64 only + so far). + +The corresponding codes for the taint flags in Oopses are (x = unknown): + + - "Pxxx" if bit 0 set or else + "Gxxx" if bit 0 unset, + + - "xFxx" if bit 1 set or else + "x xx" if bit 1 unset, + + - "xxSx" if set or else + "xx x" if bit 2 unset, + + - "xxxU" if bit 4 set or else + "xxxX" if bit 5 set or else + "xxx ". + +By default, external modules will not have the supported flag (that is, +they wil be marked as unsupported). For building externally supported +modules, please get in touch with Kurt Garloff . + + +PATCH SELECTION MECHANISM + +The SUSE kernels consist of the vanilla kernel sources on top of which a +number of patches is applied. The file series.conf determines which +patches are applied and which are excluded. A script named "guards" +converts series.conf into a plain list of patch files to be applied. +Guards decides which patches to include and exclude based on a list of +symbols. From the kernel-source.src.rpm package, a fully patched +kernel source tree can be generated from vanilla sources + patches like +this: + + # Install the package: + + $ rpm -i kernel-source.src.rpm + + # Unpack the patches and the kernel sources: + + $ cd /usr/src/packages/SOURCES + $ for f in patches.*.tar.bz2; do \ + tar -xjf "$f" || break; \ + done + $ tar -xjf linux-2.6.5.tar.bz2 + + # Apply the patches + + $ for p in $(./guards < series.conf); do + patch -d linux-2.6.5 -p1 < $p || break + done + +The configuration script config.conf which is similar to series.conf is +used for configuration file selection. See the section WHERE TO FIND +CONFIGURATION FILES. + +The file format of series.conf and config.conf should be obvious from +the comments in series.conf, and from the guards(1) manual page. (The +guards(1) manual page can be generated by running pod2man on the guards +script.) + + +WHERE TO FIND CONFIGURATION FILES + +Kernel configuration files are stored in the kernel GIT repository. When +packing up the repository, they end up in config.tar.bz2. + +The kernel-$FLAVOR packages are based on config/$ARCH/$FLAVOR. +(kernel-default is based on config/$ARCH/default, for example). The +kernel-$FLAVOR packages install their configuration files as +/boot/config-$VER_STR (for example, /boot/config-2.6.5-99-default). The +config is also packaged in the kernel-$FLAVOR-devel package as +/usr/src/linux-obj/$ARCH/$FLAVOR/.config. + +In addition, the running kernel exposes a gzip compressed version of its +configuration file as /proc/config.gz. The kernel sources can be +configured based on /proc/config.gz with ``make cloneconfig''. + + +HOW TO CONFIGURE THE KERNEL SOURCES + +Before a binary kernel is built or an additional loadable module +for an existing kernel is created, the kernel must be configured. + +In order for a loadable module to work with an existing kernel, it must +be created with a configuration that is identical to the kernel's +configuration, or at least very close to that. Each configuration is +contained in a single file. The kernel-syms package installs +configurations for all standard SUSE kernel variants, so for building +only external kernel modules it is not necessary to configure the kernel +sources. + +Configuring the kernel sources for a specific configuration is +straightfoward: + + - Locate the configuration file you want to use. (See WHERE TO FIND + CONFIGURATION FILES above). + + - Copy the configuration to the file .config in your build directory. + + - Run the following commands in sequence to apply the configuration, + generate version information files, etc.: + + make -C /usr/src/linux O=$PWD clean + make -C /usr/src/linux O=$PWD oldconfig + + Alternatively to ``make oldconfig'', you can also use ``make + menuconfig'' for a text menu oriented user interface. If the kernel + sources do not match the configuration file exactly, ``make + oldconfig'' will prompt for settings that are undefined. Once this + step is completed, a Makefile will have been created that eliminates + the need to specify the locations of the kernel source and the build + directory. + + For configuring the kernel to match the running kernel, there is a + shortcut ``make cloneconfig'' that expands the file /proc/config.gz + into .config, and then runs ``make oldconfig''. + +HOW TO ADD CUSTOM PATCHES + +Typically patches are added to the appropriate patches.* directory (e.g. +patches.fixes) and to series.conf. When the kernel-source package is +exported from the git repository, the patch will be automatically added +to the appropriate patch tarball. + +If your goal is to create a kernel with only a few additional patches +and you don't want to be bothered with using the git repository, there +is an easier way. + +The kernel-source SRPM ships with two empty archives that can be be +filled and automatically expanded when building the kernel. You can use +these to add your own patches and config options without disturbing the +rest of the kernel package. This is useful if you are using the openSUSE +Build Service and link to the main kernel-source project instead of +creating your own branch. The advantage to this is that your project +will automatically receive all the changes that go into the main project +without any further effort. + +To add a patch using this mechanism, just add it to the +patches.addon.tar.bz2 archive and add an entry to the series.conf file. +The archive will be expanded automatically with the other kernel patches +when the source tree is constructed. + +Some patches may add new Kconfig options. The config.addon.tar.bz2 +archive contains the same hierarchy as config.tar.bz2, but is under +config.addon. You can add your new config options to files named after +their config/ counterparts. + +For example, the file used to configure the i386 default kernel is named +config/i386/default. To add config options to that kernel, you would +create a new file called config.addon/i386/default with the options as +formatted in a normal Linux kernel .config file. This is important +because the kernel build is non-interactive and will fail if it +encounters new config options without entries in the config file. + +MODULE LOAD PATHS + +Modules that belong to a specific kernel release are installed in +/lib/modules/2.6.5-99-smp and similar. Note that this path contains the +kernel package release number. Modules from KMPs must be installed +below /lib/modules/2.6.5-99-smp/updates/ and similar: modules below +updates/ have priority over other modules. + +When KMPs contain modules that are compatible between multiple installed +kernels, symlinks are used to make those modules available to those +compatible kernels like this: + + /lib/modules/2.6.16-100-smp/weak-updates/foo.ko -> + /lib/modules/2.6.16-99-smp/updates/foo.ko + +Modules in the weak-updates directory have lower priority than modules +in /lib/modules/2.6.16-100-smp/updates/, and higher priority than other +modules in /lib/modules/2.6.16-100-smp. + + +REFERENCES + +General + + Documentation in the kernel source tree. + + Linux Documentation Project, http://www.tldp.org/ + + Linux Weekly News, http://lwn.net + + Rusty's Remarkably Unreliable Guides (Kernel Hacking + and Kernel Locking guides), + http://www.netfilter.org/unreliable-guides/ + + Kernel newbies, http://www.kernelnewbies.org/ + + +Loadable Kernel Modules + + Peter Jay Salzman and Ori Pomerantz: Linux Kernel Module + Programming Guide, Version 2.4, April 2003, + http://www.tldp.org/guides.html + + +Kernel Module Packages + + Andreas Gruenbacher: Kernel Module Packages Manual. + Versions for CODE9 (SLES9, SUSE LINUX 10.0) and CODE10 + (SUSE Linux 10.1, SLES10), + http://www.suse.de/~agruen/KMPM/ diff --git a/apply-patches b/apply-patches new file mode 100644 index 00000000..3a1c4dcf --- /dev/null +++ b/apply-patches @@ -0,0 +1,47 @@ +#!/bin/sh +# +# Given a series.conf file and a directory with patches, applies them to the +# current directory. +# Used by kernel-source.spec.in and kernel-binary.spec.in + +USAGE="$0 [--vanilla] [symbol ...]" + +set -e +set -o pipefail +vanilla=false +if test "$1" == "--vanilla"; then + vanilla=true + shift +fi +if test $# -lt 2; then + echo "$USAGE" >&2 + exit 1 +fi +DIR="${0%/*}" +SERIES_CONF=$1 +PATCH_DIR=$2 +shift 2 + +trap 'rm -f "$series"' EXIT +series=$(mktemp) +# support for patches in patches.addon/series +cp "$SERIES_CONF" "$series" +if ! $vanilla && test -e "$PATCH_DIR/patches.addon/series"; then + # make it user-friendly and automatically prepend "patches.addon/" + # if there is no "/" + sed -r 's|^([[:space:]]*)([^#[:space:]][^/]*)$|\1patches.addon/\2|' \ + "$PATCH_DIR/patches.addon/series" >>"$series" +fi + +( + echo "trap 'echo \"*** patch \$_ failed ***\"' ERR" + echo "set -ex" + "$DIR"/guards "$@" <"$series" | \ + if $vanilla; then + egrep '^patches\.(kernel\.org|rpmify)/' + else + cat + fi |\ + sed "s|^|patch -s -F0 -E -p1 --no-backup-if-mismatch -i $PATCH_DIR/|" +) | sh + diff --git a/arch-symbols b/arch-symbols new file mode 100644 index 00000000..7b052fca --- /dev/null +++ b/arch-symbols @@ -0,0 +1,45 @@ +#!/bin/sh + +############################################################################# +# Copyright (c) 2003-2005,2009 Novell, Inc. +# All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, contact Novell, Inc. +# +# To contact Novell about this file by physical or electronic mail, +# you may find current contact information at www.novell.com +############################################################################# + +# With --list, list all known architectures, otherwise print the generic +# name for this architecture (or the one specified on command line). + +if [ "$1" = "--list" ]; then + # List all known architectures + echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc + exit 0 +fi + +if [ -n "$1" ]; then + ARCH="$1" +else + ARCH="`arch`" +fi +case "$ARCH" in + # from rpm --eval '%ix86' + i?86 | pentium3 | pentium4 | athlon | geode) + echo i386 + ;; + *) + echo "$ARCH" + ;; +esac diff --git a/check-for-config-changes b/check-for-config-changes new file mode 100644 index 00000000..86e372b0 --- /dev/null +++ b/check-for-config-changes @@ -0,0 +1,17 @@ +#! /bin/bash + +# lines 4 contains a timestamp... +differences="$( + diff -bU0 <(sed -e '/^# .* is not set$/p' -e '/^$\|^#/d' "$1" | sort) \ + <(sed -e '/^# .* is not set$/p' -e '/^$\|^#/d' "$2" | sort) \ + | grep '^[-+][^-+]' +)" || true +if [ -n "$differences" ]; then + echo + echo "Changes after running \`make oldconfig':" + echo "$differences" + echo + if echo "$differences" | grep -q '^+' ; then + exit 1 + fi +fi diff --git a/check-supported-list b/check-supported-list new file mode 100644 index 00000000..5a7abc7f --- /dev/null +++ b/check-supported-list @@ -0,0 +1,36 @@ +#! /bin/sh + +sourcedir=$1 +modpath=$2 + +# Check for modules not listed in supported.conf: First, for each module +# in the list, set mod_$module=1 +for module in $($sourcedir/guards --list < $sourcedir/supported.conf \ + | sed -e 's,.*/,,'); do + m=${module##*/} + m=${m%.ko} + eval mod_${m//-/_}=1 +done + +# Check if any installed module was not listed +status= +cd $modpath +for module in $(find . -name '*.ko' | sort); do + case "$module" in + ./kernel/drivers/staging/* | ./kernel/Documentation/*) + continue ;; + esac + module=${module%.ko} + m=${module##*/} + m=${m//-/_} + m="mod_$m" + if [ -z "${!m}" ]; then + if [ -z "$status" ]; then + echo "Modules not listed in supported.conf:" + status=1 + fi + echo ${module#./} + fi +done + +exit $status diff --git a/compute-PATCHVERSION.sh b/compute-PATCHVERSION.sh new file mode 100644 index 00000000..12da67d1 --- /dev/null +++ b/compute-PATCHVERSION.sh @@ -0,0 +1,77 @@ +#! /bin/bash + +export LANG=POSIX + +path=(.) +while test $# -gt 0; do + case "$1" in + --patches) + path[${#path[@]}]=$2 + shift 2 + ;; + *) + echo "Usage $0 [--patches ]" >&2 + exit 1 + esac +done +if test "${path[*]}" = "."; then + path=(. ..) +fi + + +source $(dirname $0)/config.sh +parse_srcversion() +{ + local IFS=. + set -- ${SRCVERSION%%-*} + VERSION=$1 + PATCHLEVEL=${2:-0} + SUBLEVEL=${3:-0} + EXTRAVERSION=${SRCVERSION#${SRCVERSION%%-*}} +} +parse_srcversion + +EXTRA_SYMBOLS=$(set -- $([ -e $(dirname $0)/extra-symbols ] && cat $(dirname $0)/extra-symbols) ; echo $*) + +series=$(mktemp) +tmp_files="$series" +trap 'rm -rf $tmp_files' EXIT +warned=false +while read patch; do + dir=${patch%/*} + for p in "${path[@]}"; do + if test -d "$p/$dir"; then + echo "$p/$patch" + continue 2 + fi + done + for p in "${path[@]}"; do + if test -e "$p/$dir.tar.bz2"; then + echo "unpacking $p/$dir.tar.bz2" >&2 + if ! $warned; then + echo "pass --patches to avoid this" >&2 + warned=true + fi + tmp_files="$tmp_files $dir" + tar -xjf "$p/$dir.tar.bz2" + echo "$patch" + continue 2 + fi + done + echo "Can't find $patch" >&2 + exit 1 +done >"$series" < <($(dirname $0)/guards $EXTRA_SYMBOLS =m + CPUID is not useful as it can be called in userspace as well, but + some userspace progs may still need it -> =m + +------------------------------------------------------------------- +Mon Apr 26 15:39:13 CEST 2010 - jeffm@suse.de + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + - gcc 4.5 appears to issue invalid instructions, but even if + that is not the case or the issue is fixed, it was an optimization + for the cell processor that will most likely not be used + on most hardware. + +------------------------------------------------------------------- +Mon Apr 26 03:07:40 CEST 2010 - jeffm@suse.de + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Sun Mar 21 22:54:05 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - USB_NET_SMSC75XX: SMSC LAN75XX based USB 2.0 gigabit ethernet devices + - Enabled as module; Defaults to n + + - LCD_L4F00242T03: Epson L4F00242T03 LCD + - Enabled as module; Defaults to n + + - LEDS_DELL_NETBOOKS: External LED on Dell Business Netbooks + - Enabled as module; Defaults to n + + - CEPH_FS: Ceph distributed file system + - Enabled as module; Defaults to n + + - CEPH_FS_PRETTYDEBUG: Include file:line in ceph debug output + - Enabled; Defaults to n + - Better debugging output at the cost of a larger module + - Only used with dynamic printk so it doesn't affect performance + +------------------------------------------------------------------- +Wed Mar 17 16:40:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - PPS_CLIENT_KTIMER: Kernel timer client (Testing client, use for debug) + - Disabled; Defaults to n + + - PPS_CLIENT_LDISC: PPS line discipline + - Enabled as module; Defaults to n + + - INPUT_TWL4030_VIBRA: TWL4030 Vibrator + - Enabled as module; Defaults to n + +------------------------------------------------------------------- +Wed Mar 10 22:08:55 CET 2010 - jeffm@suse.de + +- CONFIG_DRM_RADEON_KMS: Enable modesetting on radeon by default - NEW DRIVER + - Enabled; No default + - KMS-supported X.org driver is now in Factory: + http://lists.opensuse.org/archive/opensuse-commit/2010-03/msg00252.html + +------------------------------------------------------------------- +Tue Mar 9 23:54:32 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + x86/x86_64: + - RCU_FAST_NO_HZ: Accelerate last non-dyntick-idle CPU's grace periods + - Available on all arches, defaults to n + - Disabled except for i386/{default,desktop} and x86_64/desktop + - Provides better energy efficiency on systems without large + numbers of CPUs. + + - OPTPROBES: Kprobes jump optimization support + - Only available on x86/x86_64, defaults to y + - Feature is enabled at runtime via debug.kprobes_optimization sysctl + + - NO_BOOTMEM: Disable Bootmem code + - Only available on x86/x86_64, defaults to y + - Reduces a layer between early allocator and final allocator + + - XEN: Xen guest support + - Disabled; Defaults to n + + - PATA_LEGACY: Legacy ISA PATA support + - Disabled; Defaults to n + + ia64: + - OPROFILE: OProfile system profiling + - Enabled as module; Defaults to n + + powerpc: + - SPI_DW_MMIO: Memory-mapped io interface driver for DW SPI core + - Enabled as module; Defaults to n + + powerpc/ps3: + - LKDTM: Linux Kernel Dump Test Tool Module + - Disabled; Defaults to n + + s390: + - KERNEL_GZIP: Allow creation of bzImage with gzip compression + + - SMSGIUCV_EVENT: Deliver IUCV special messages as uevents (VM only) + - Enabled as module; Defaults to n + + - KPROBE_EVENT: Enable kprobes-based dynamic events + - Enabled; Defaults to y + + - DEBUG_STRICT_USER_COPY_CHECKS: Strict user copy size checks + - Enabled; Defaults to n + - This is a compile-time option that forces gcc to issue warnings + if there are potentially unsafe uses of copy_from_user + + + Architecture agnostic: + + - PM_ADVANCED_DEBUG: Extra PM attributes in sysfs for low-level + debugging/testing + - Available on all arches, defaults to n + - Enabled on all arches + - Acts as a guard for other options, no code difference + + - NETFILTER_XT_TARGET_CT: "CT" target support + - Enabled as module; Defaults to n + - Adds support for a connection tracking target. Used in conjuction with + zones. + + - IP_VS_PROTO_SCTP: SCTP load balancing support + - Enabled; Defaults to n + - Adds SCTP support to IPVS + + - NF_CONNTRACK_ZONES: Connection tracking zones + - Enabled; Defaults to n + - Adds zone support to connection tracking. Zones seem to be similar to + network namespaces but limited just to connection tracking so there + is much less overhead. + + - BRIDGE_IGMP_SNOOPING: IGMP snooping + - Enabled; Defaults to y + + Drivers: + - CAN_PLX_PCI: PLX90xx PCI-bridge based Cards + - Enabled as module; Defaults to n + + - MACVTAP: MAC-VLAN based tap driver + - Enabled as module; Defaults to n + + - KSZ884X_PCI: Micrel KSZ8841/2 PCI + - Enabled as module; Defaults to n + + - IXGBEVF: Intel(R) 82599 Virtual Function Ethernet support + - Enabled as module; Defaults to n + + - QLCNIC: QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support + - Enabled as module; Defaults to n + + - LIBERTAS_MESH: Enable mesh support + - Enabled; Defaults to n + - This option factored out mesh support from the driver to allow it to be + disabled. Enabling it keeps the previous functionality. + + - RT2800PCI_RT30XX: rt2800pci - Include support for rt30xx + - RT2800PCI_RT35XX: rt2800pci - Include support for rt35xx + - RT2800USB_RT30XX: rt2800usb - Include support for rt30xx + - RT2800USB_RT35XX: rt2800usb - Include support for rt35xx + - RT2800USB_UNKNOWN: rt2800usb - Include support for unknown (USB) devices + - Disabled; Defaults to n + - Support for these devices is currently not functional + - Testers may enable support for these devices via the sysfs new_id + interface, but enabling them by default would just confuse users + + - SERIAL_TIMBERDALE: Timberdale UART + - Enabled as module; Defaults to n + + - I2C_XILINX: Xilinx I2C Controller + - (Should be) Enabled as module; Defaults to n + - Temporarily disabled due to missing include + + - GPIO_IT8761E: IT8761E GPIO support + - Enabled as module; Defaults to n + + - GPIO_SCH: Intel SCH GPIO + - Enabled as module; Defaults to n + + - GPIO_MAX7300: Maxim MAX7300 GPIO expander + - Enabled as module; Defaults to n + + - SENSORS_ADT7411: Analog Devices ADT7411 + - Enabled as module; Defaults to n + + - SENSORS_ASC7621: Andigilog aSC7621 + - Enabled as module; Defaults to n + + - MAX63XX_WATCHDOG: Max63xx watchdog + - Enabled as module; Defaults to n + + - MFD_WM8994: Wolfson Microelectronics WM8994 + - Enabled as module; Defaults to n + + - MFD_TIMBERDALE: Timberdale FPGA + - Enabled as module; Defaults to n + + - LPC_SCH: Intel SCH LPC + - Enabled as module; Defaults to n + + - REGULATOR_DUMMY: Provide a dummy regulator if regulator lookups fail + - Enabled; Defaults to n + + - REGULATOR_MAX8649: Maxim 8649 voltage regulator + - Enabled as module; Defaults to n + + - REGULATOR_WM8994: Wolfson Microelectronics WM8994 CODEC + - Enabled as module; Defaults to n + + - VIDEO_CX18_ALSA: Conexant 23418 DMA audio support + - Enabled as module; Defaults to n + + - USB_GSPCA_BENQ: Benq USB Camera Driver + - Enabled as module; Defaults to n + + - USB_GSPCA_CPIA1: cpia CPiA (version 1) Camera Driver + - Enabled as module; Defaults to n + + - USB_GSPCA_OV534_9: OV534 OV965x USB Camera Driver + - Enabled as module; Defaults to n + + - USB_GSPCA_SN9C2028: SONIX Dual-Mode USB Camera Driver + - Enabled as module; Defaults to n + + - VIDEO_TLG2300: Telegent TLG2300 USB video capture support + - Enabled as module; Defaults to n + + - RADIO_SAA7706H: SAA7706H Car Radio DSP + - Enabled as module; Defaults to n + + - RADIO_TIMBERDALE: Timberdale radio driver + - Enabled as module; Defaults to n + + - DVB_USB_AZ6027: Azurewave DVB-S/S2 USB2.0 AZ6027 + - Enabled as module; Defaults to n + + - DVB_NGENE: Micronas nGene support + - Enabled as module; Defaults to n + + - VGA_ARB_MAX_GPUS: Maximum number of GPUs + - 16; Defaults to 16 + + - VGA_SWITCHEROO: Laptop Hybrid Grapics - GPU switching support + - Enabled; Defaults to n + - Allows switching between multiplexed GPUs on many laptops released + in the past few years + + - SND_JAZZ16: Media Vision Jazz16 card and compatibles + - Enabled as module only on i386/default; Defaults to n + + - SND_USB_UA101: Edirol UA-101/UA-1000 + - Enabled as module; Defaults to n + + - HID_3M_PCT: 3M PCT + - Enabled as module; Defaults to n + + - LOGIG940_FF: Logitech Flight System G940 force feedback + - Enabled; Defaults to n + - Enables support for the device within the Logitech HID module + + - HID_MAGICMOUSE: Apple MagicMouse multi-touch support + - Enabled as module; Defaults to n + + - HID_MOSART: MosArt + - Enabled as module; Defaults to n + + - HID_QUANTA: Quanta Optical Touch + - Enabled as module; Defaults to n + + - HID_STANTUM: Stantum + - Enabled as module; Defaults to n + + - USB_SERIAL_QCAUX: USB Qualcomm Auxiliary Serial Port Driver + - Enabled as module; Defaults to n + + - USB_SERIAL_VIVOPAY_SERIAL: USB ViVOpay serial interface driver + - Enabled as module; Defaults to n + + - MMC_RICOH_MMC: Ricoh MMC Controller Disabler + - Enabled; Defaults to n + - This allows users with some Ricoh-based multifunction card readers to + use their MMC cards. The multifunction device supports both SD and MMC + in hardware but Linux only has a driver for the SD portion. The SD + driver can read the MMC cards, but only if the MMC hardware is not + allowed to claim the card first. + + - DMADEVICES_DEBUG: DMA Engine debugging + - Disabled; Defaults to n + + - UIO_NETX: Hilscher NetX Card driver + - Enabled as module; Defaults to n + + - USB_IP_DEBUG_ENABLE: USB-IP Debug Enable + - Disabled; Defaults to n + - This only sets the flag to enable the debug behavior by default + + - VMIVME_7805: VMIVME-7805 + - Enabled as module; Defaults to n + + - BATMAN_ADV_DEBUG: B.A.T.M.A.N. debugging + - Enabled; Defaults to n + - This allows the debugging output but does not enable it by default. + + - DT3155: DT3155 Digitizer + - Enabled as module; Defaults to n + + - CRYSTALHD: Broadcom Crystal HD video decoder + - Enabled as module; Defaults to n + + - LOGFS: LogFS file system + - Enabled as module; Defaults to n + + - CRYPTO_PCRYPT: Parallel crypto engine + - Enabled as module; Defaults to n + + - VHOST_NET: Host kernel accelerator for virtio net + - Enabled as module; Defaults to n + + - SERIAL_UARTLITE: Xilinx uartlite serial port + - Enabled as module; Defaults to n + + - GPIO_WM8994: WM8994 GPIOs + - Enabled as module; Defaults to n + + - GPIO_TIMBERDALE: Timberdale GPIO IP + - Disabled; Defaults to n + - Should probably be available as a module + + - MFD_88PM860X: Marvell 88PM8606/88PM8607 + - Disabled; Defaults to n + - Should probably be available as a module + + - HTC_I2CPLD: HTC I2C PLD chip + - Disabled; Defaults to n + - Should probably be available as a module + + - MFD_MAX8925: Maxim Semiconductor MAX8925 PMIC + - Disabled; Defaults to n + - Should probably be available as a module + + - AB3100_CORE: ST-Ericsson AB3100 Mixed Signal Circuit core functions + - Disabled; Defaults to n + - Should probably be available as a module + diff --git a/config.addon.tar.bz2 b/config.addon.tar.bz2 new file mode 100644 index 00000000..894e5220 --- /dev/null +++ b/config.addon.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ddc0ec138354be50695298a844500f84b883a419c711785aba32e2c8e657f0 +size 129 diff --git a/config.conf b/config.conf new file mode 100644 index 00000000..56be141b --- /dev/null +++ b/config.conf @@ -0,0 +1,65 @@ +# Kernel configuration file selection. +# See the arch-symbols script for a list of symbols defined. +# -syms excludes a flavor from the kernel-syms package (vanilla is excluded +# automatically). + +# +# IMPORTANT: the subdirectory names map to cpuarch +# kernel-binary and kernel-source rely on this +# + ++i386 i386/default ++i386 i386/desktop ++i386 i386/pae ++i386 -syms i386/debug ++i386 i386/xen ++i386 -syms i386/ec2 ++i386 i386/vanilla ++i386 -syms i386/trace + ++ia64 ia64/default ++ia64 -syms ia64/debug ++ia64 ia64/vanilla ++ia64 -syms ia64/trace + ++x86_64 x86_64/default ++x86_64 x86_64/desktop ++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 + +# openSuSE: +# G3 G4 bPlan ++ppc ppc/default +# G5 PS3 pSeries ++ppc ppc/ppc64 +# PS3 bootloader +#+ppc -syms ppc/ps3 +# maybe the kernels above were patched to death? ++ppc ppc/vanilla + +# SLES +# identical to ppc64 flavor, all KMP packages need a kernel-default +# Up to now, the openSuSE 11.1 ppc media can not have a +# kernel-default.ppc.rpm and a kernel-default.ppc64.rpm to continue +# supporting 32bit and 64bit systems. ++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 + +# Maintained by jengelh +# +sparc64 sparc64/default +# +sparc64 -syms sparc64/net diff --git a/config.sh b/config.sh new file mode 100644 index 00000000..68d13c2d --- /dev/null +++ b/config.sh @@ -0,0 +1,7 @@ +# The version of the main tarball to use +SRCVERSION=3.1-rc8 +# 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 new file mode 100644 index 00000000..d879ecf7 --- /dev/null +++ b/config.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2cecf5e53290976a7c8ed25f4dcbca409fb3b2d17ac03fac55f64c53fcfc82 +size 229573 diff --git a/configtool.pl b/configtool.pl new file mode 100644 index 00000000..736c4b59 --- /dev/null +++ b/configtool.pl @@ -0,0 +1,60 @@ +#!/usr/bin/perl +# +# Merge two kernel configs, eliminating duplicated assignments. +# TODO: +# support for #include-style directives in config files, to make the +# kernel configs more maintainable + +use strict; +use warnings; + +# ( { source => name => ... value => ...}, { comment => ...}, ... ) +my @lines; +# references into the @lines array +my %variables; + +sub store_var { + my ($file, $line, $name, $value) = @_; + + if (exists($variables{$name})) { + if ($variables{$name}->{source} eq $file) { + print STDERR "$file:$line: warning: $name redefined\n"; + } + } else { + my $new = {}; + push(@lines, $new); + $variables{$name} = $new; + } + $variables{$name}->{source} = $file; + $variables{$name}->{name} = $name; + $variables{$name}->{value} = $value; +} + +sub store_comment { + my ($comment) = @_; + + push(@lines, { comment => $comment }); +} + +while (<>) { + chomp; + if (/^CONFIG_(\w+)=(.*)/) { + store_var($ARGV, $., $1, $2); + } elsif (/^# CONFIG_(\w+) is not set/) { + store_var($ARGV, $., $1, 'n'); + } elsif (/^$|^#/) { + store_comment($_); + } else { + print STDERR "$ARGV:$.: warning: ignoring unknown line\n"; + } +} + +for my $line (@lines) { + if (exists($line->{comment})) { + print "$line->{comment}\n"; + } elsif ($line->{value} eq 'n') { + print "# CONFIG_$line->{name} is not set\n"; + } else { + print "CONFIG_$line->{name}=$line->{value}\n"; + } +} diff --git a/devel-post.sh b/devel-post.sh new file mode 100644 index 00000000..fa8b70cd --- /dev/null +++ b/devel-post.sh @@ -0,0 +1,16 @@ +relink() { + if [ -h "$2" ]; then + local old=$(readlink "$2") + [ "$old" = "$1" ] && return 0 + echo "Changing symlink $2 from $old to $1" + elif [ -e "$2" ]; then + echo "Replacing file $2 with symlink to $1" + fi + rm -f "$2" \ + && ln -s "$1" "$2" +} + +release="@KERNELRELEASE@@SRCVARIANT@-obj" +arch_flavor="@CPU_ARCH_FLAVOR@" + +relink ../../linux-$release/"$arch_flavor" /usr/src/linux-obj/"$arch_flavor" diff --git a/devel-pre.sh b/devel-pre.sh new file mode 100644 index 00000000..d545a29a --- /dev/null +++ b/devel-pre.sh @@ -0,0 +1,4 @@ +# handle update from an older kernel-source with linux-obj as symlink +if [ -h /usr/src/linux-obj ]; then + rm -vf /usr/src/linux-obj +fi diff --git a/find-provides b/find-provides new file mode 100644 index 00000000..f4822b5e --- /dev/null +++ b/find-provides @@ -0,0 +1,18 @@ +#! /bin/bash + +trap 'rm -f "$filelist"' EXIT +filelist=$(mktemp -t ${0##*/}.XXXXXXXXXX) +grep -v '/kernel/drivers/staging/.*\.ko$' >"$filelist" +shopt -s nullglob + +# 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" + done +else + perl -ni -e 'next if /\/boot\/vmlinux/ && !/\.debug$/; print' "$filelist" +fi + +/usr/lib/rpm/find-provides "$@" <"$filelist" diff --git a/group-source-files.pl b/group-source-files.pl new file mode 100644 index 00000000..de4ff13a --- /dev/null +++ b/group-source-files.pl @@ -0,0 +1,82 @@ +#!/usr/bin/perl + +use Getopt::Long; +use strict; + +&main(); +sub main +{ + my($dev_output, $ndev_output, $loc) = ("-", "-", "."); + &Getopt::Long::Configure(qw(bundling)); + &GetOptions( + "D=s" => \$dev_output, + "N=s" => \$ndev_output, + "L=s" => \$loc, + ); + + my($dev, $ndev) = &scan($loc); + &output($dev, $ndev, $dev_output, $ndev_output); +} + +sub scan +{ + my $loc = shift @_; + my(@dev, @ndev); + + foreach $_ (`find "$loc"`) + { + chomp $_; + if (!-f $_) { + # Generate directory list later. + next; + } + my $is_devel = + m{^\Q$loc\E.*/Kconfig} || + m{^\Q$loc\E.*/Kbuild} || + m{^\Q$loc\E.*/Makefile} || + m{^\Q$loc\E/arch/[^/]+/include\b} || + m{^\Q$loc\E/include/[^/]+\b} || + m{^\Q$loc\E/scripts\b}; + if (substr($_, 0, 1) ne "/") { + # We cannot use an absolute path during find, + # but rpm wants one later. + $_ = "/$_"; + } + $is_devel ? push(@dev, $_) : push(@ndev, $_); + } + + push(@dev, &calc_dirs("/$loc", \@dev)); + push(@ndev, &calc_dirs("/$loc", \@ndev)); + return (\@dev, \@ndev); +} + +sub calc_dirs +{ + my($base, $files) = @_; + my %dirs; + + foreach my $file (@$files) { + my $path = $file; + do { + $path =~ s{/[^/]+$}{}; + $dirs{$path} = 1; + } while ($path ne $base); + # This loop also makes sure that $base itself is included. + } + + return map { "\%dir $_" } keys %dirs; +} + +sub output +{ + my($dev, $ndev, $dev_out, $ndev_out) = @_; + local *FH; + + open(FH, "> $dev_out") || warn "Error writing to $dev_out: $!"; + print FH join("\n", @$dev), "\n"; + close FH; + + open(FH, "> $ndev_out") || warn "Error writing to $ndev_out: $!"; + print FH join("\n", @$ndev), "\n"; + close FH; +} diff --git a/guards b/guards new file mode 100644 index 00000000..77644bcf --- /dev/null +++ b/guards @@ -0,0 +1,305 @@ +#!/usr/bin/perl -w +############################################################################# +# Copyright (c) 2003-2007,2009 Novell, Inc. +# All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, contact Novell, Inc. +# +# To contact Novell about this file by physical or electronic mail, +# you may find current contact information at www.novell.com +############################################################################# +# +# Guards: +# +# +xxx include if xxx is defined +# -xxx exclude if xxx is defined +# +!xxx include if xxx is not defined +# -!xxx exclude if xxx is not defined +# + +use FileHandle; +use Getopt::Long; +use strict; + +# Prototypes +sub files_in($$); +sub parse($$); +sub help(); + +#sub strip_ext($) { +# local ($_) = @_; +# s/\.(diff?|patch)$//; +#} + +#sub try_ext($) { +# my ($path) = @_; +# for my $p in (($path, "$path.diff", "$path.dif", "$path.patch")) { +# return $p +# if (-f $p); +# } +# return undef; +#} + +sub slashme($) { + my ($dir) = @_; + $dir =~ s#([^/])$#$&/#; # append a slash if necessary + if ($dir eq './') { + return ''; + } else { + return $dir; + } +} + +# Generate a list of files in a directory +# +sub files_in($$) { + my ($dir, $path) = @_; + my $dh = new FileHandle; + my (@files, $file); + + + opendir $dh, length("$dir$path") ? "$dir$path" : '.' + or die "$dir$path: $!\n"; + while ($file = readdir($dh)) { + next if $file =~ /^(\.|\.\.|\.#.*|CVS|.*~)$/; + if (-d "$dir$path$file") { + @files = (@files, files_in($dir, "$path$file/")); + } else { + #print "[$path$file]\n"; + push @files, "$path$file"; + } + } + closedir $dh; + return @files; +} + +# Parse a configuration file +# Callback called with ($patch, @guards) arguments +# +sub parse($$) { + my ($fh, $callback) = @_; + + my $line = ""; + + while (<$fh>) { + chomp; + s/(^|\s+)#.*//; + if (s/\\$/ /) { + $line .= $_; + next; + } + $line .= $_; + my @guards = (); + foreach my $token (split /[\s\t\n]+/, $line) { + next if $token eq ""; + if ($token =~ /^[-+]/) { + push @guards, $token; + } else { + #print "[" . join(",", @guards) . "] $token\n"; + &$callback($token, @guards); + } + } + $line = ""; + } +} + +# Command line options +# +my ($dir, $config, $default, $check, $list, $invert_match, $with_guards) = + ( '', '-', 1, 0, 0, 0, 0); +my @path; + +# Help text +# +sub help() { + print "$0 - select from a list of files guarded by conditions\n"; + print "SYNOPSIS: $0 [--prefix=dir] [--path=dir1:dir2:...]\n" . + " [--default=0|1] [--check|--list] [--invert-match]\n" . + " [--with-guards] [--config=file] symbol ...\n\n" . + " (Default values: --path='" . join(':', @path) . "', " . + "--default=$default)\n"; + exit 0; +} + +# Parse command line options +# +Getopt::Long::Configure ("bundling"); +eval { + unless (GetOptions ( + 'd|prefix=s' => \$dir, + 'c|config=s' => \$config, + 'C|check' => \$check, + 'l|list' => \$list, + 'w|with-guards' => \$with_guards, + 'p|path=s' => \@path, + 'D|default=i' => \$default, + 'v|invert-match' => \$invert_match, + 'h|help' => sub { help(); exit 0; })) { + help(); + exit 1; + } +}; +if ($@) { + print "$@"; + help(); + exit 1; +} + +@path = ('.') + unless (@path); +@path = split(/:/, join(':', @path)); + +my $fh = ($config eq '-') ? \*STDIN : new FileHandle($config) + or die "$config: $!\n"; + +$dir = slashme($dir); + +if ($check) { + # Check for duplicate files, or for files that are not referenced by + # the specification. + + my $problems = 0; + my @files; + + foreach (@path) { + @files = (@files, files_in($dir, slashme($_))); + } + my %files = map { $_ => 0 } @files; + + parse($fh, sub { + my ($patch, @guards) = @_; + if (exists $files{$patch}) { + $files{$patch}++; + } else { + print "Not found: $dir$patch\n"; + $problems++; + }}); + + $fh->close(); + + my ($file, $ref); + while (($file, $ref) = each %files) { + next if $ref == 1; + + if ($ref == 0) { + print "Unused: $file\n" if $ref == 0; + $problems++; + } + if ($ref > 1) { + print "Warning: multiple uses: $file\n" if $ref > 1; + # This is not an error if the entries are mutually exclusive... + } + } + exit $problems ? 1 : 0; + +} elsif ($list) { + parse($fh, sub { + my ($patch, @guards) = @_; + print join(' ', @guards), ' ' + if (@guards && $with_guards); + print "$dir$patch\n"; + }); +} else { + # Generate a list of patches to apply. + + my %symbols = map { $_ => 1 } @ARGV; + + parse($fh, sub { + my ($patch, @guards) = @_; + + my $selected; + if (@guards) { + # If the first guard is -xxx, the patch is included by default; + # if it is +xxx, the patch is excluded by default. + $selected = ($guards[0] =~ /^-/); + + foreach (@guards) { + /^([-+])(!?)(.*)?/ + or die "Bad guard '$_'\n"; + + # Check if the guard matches + if (($2 eq '!' && !exists $symbols{$3}) || + ($2 eq '' && ( $3 eq '' || exists $symbols{$3}))) { + # Include or exclude + $selected = ($1 eq '+'); + } + } + } else { + # If there are no guards, use the specified default result. + $selected = $default; + } + + print "$dir$patch\n" + if $selected ^ $invert_match; + }); + + $fh->close(); + + exit 0; +} + +__END__ + +=head1 NAME + +guards - select from a list of files guarded by conditions + +=head1 SYNOPSIS + +F [--prefix=F] [--path=F] [--default=<0|1>] + [--check|--list] [--invert-match] [--with-guards] [--config=] + I ... + + +=head1 DESCRIPTION + +The script reads a configuration file that may contain so-called guards, file +names, and comments, and writes those file names that satisfy all guards to +standard output. The script takes a list of symbols as its arguments. Each line +in the configuration file is processed separately. Lines may start with a +number of guards. The following guards are defined: + +=over + ++I Include the file(s) on this line if the symbol I is defined. + +-I Exclude the file(s) on this line if the symbol I is defined. + ++!I Include the file(s) on this line if the symbol I is not defined. + +-!I Exclude the file(s) on this line if the symbol I is not defined. + +- Exclude this file. Used to avoid spurious I<--check> messages. + +=back + +The guards are processed left to right. The last guard that matches determines +if the file is included. If no guard is specified, the I<--default> +setting determines if the file is included. + +If no configuration file is specified, the script reads from standard input. + +The I<--check> option is used to compare the specification file against the +file system. If files are referenced in the specification that do not exist, or +if files are not enlisted in the specification file warnings are printed. The +I<--path> option can be used to specify which directory or directories to scan. +Multiple directories are eparated by a colon (C<:>) character. The +I<--prefix> option specifies the location of the files. + +Use I<--list> to list all files independend of any rules. Use I<--invert-match> +to list only the excluded patches. Use I<--with-guards> to also include all +inclusion and exclusion rules. + +=head1 AUTHOR + +Andreas Gruenbacher , SUSE Labs diff --git a/host-memcpy-hack.h b/host-memcpy-hack.h new file mode 100644 index 00000000..fa90a336 --- /dev/null +++ b/host-memcpy-hack.h @@ -0,0 +1,7 @@ +#ifdef __x86_64__ +/* + * Force the linker to use the older memcpy variant, so that the user programs + * work on older systems + */ +__asm__(".symver memcpy,memcpy@GLIBC_2.2.5"); +#endif diff --git a/kabi.pl b/kabi.pl new file mode 100644 index 00000000..09c8be80 --- /dev/null +++ b/kabi.pl @@ -0,0 +1,131 @@ +#!/usr/bin/perl +use strict; +use warnings; + +use Getopt::Long; +use Data::Dumper; + +# ( { sym => regexp, mod => regexp, fail => 0/1 }, ... ) +my @rules; +my ($opt_verbose, $opt_rules); + +sub load_rules { + my $file = shift; + my $errors = 0; + + xopen(my $fh, '<', $file); + while (<$fh>) { + chomp; + s/#.*//; + next if /^\s*$/; + my ($pattern, $verdict) = split(/\s+/); + my $new = {}; + if (uc($verdict) eq "PASS") { + $new->{fail} = 0; + } elsif (uc($verdict) eq "FAIL") { + $new->{fail} = 1; + } else { + print STDERR "$file:$.: invalid verdict \"$verdict\", must be either PASS or FAIL.\n"; + $errors++; + next; + } + # simple glob -> regexp conversion + $pattern =~ s/\*/.*/g; + $pattern =~ s/\?/./g; + $pattern =~ s/.*/^$&\$/; + if ($pattern =~ /\/|^vmlinux$/) { + $new->{mod} = $pattern; + } else { + $new->{sym} = $pattern; + } + push(@rules, $new); + } + if ($errors && !@rules) { + print STDERR "error: only garbage found in $file.\n"; + exit 1; + } + close($fh); +} + +sub load_symvers { + my $file = shift; + my %res; + my $errors = 0; + + xopen(my $fh, '<', $file); + while (<$fh>) { + my @l = split(/\s+/); + if (@l < 3) { + print STDERR "$file:$.: unknown line\n"; + $errors++; + next; + } + my $new = { crc => $l[0], mod => $l[2] }; + $res{$l[1]} = $new; + } + if (!%res) { + print STDERR "error: no symvers found in $file.\n"; + exit 1; + } + close($fh); + return %res; +} + +my $kabi_errors = 0; +sub kabi_change { + my ($sym, $mod, $oldcrc, $newcrc) = @_; + my $fail = 1; + + for my $rule (@rules) { + if ($rule->{mod} && $mod =~ $rule->{mod} || + $rule->{sym} && $sym =~ $rule->{sym}) { + $fail = $rule->{fail}; + last; + } + } + return unless $fail or $opt_verbose; + print STDERR "KABI: symbol $sym($mod) "; + if ($newcrc) { + print STDERR "changed crc from $oldcrc to $newcrc" + } else { + print STDERR "lost"; + } + if ($fail) { + $kabi_errors++; + print STDERR "\n"; + } else { + print STDERR " (tolerated)\n"; + } +} + +sub xopen { + open($_[0], $_[1], @_[2..$#_]) or die "$_[2]: $!\n"; +} + +my $res = GetOptions( + 'verbose|v' => \$opt_verbose, + 'rules|r=s' => \$opt_rules, +); +if (!$res || @ARGV != 2) { + print STDERR "Usage: $0 [--rules ] Module.symvers.old Module.symvers\n"; + exit 1; +} +if (defined($opt_rules)) { + load_rules($opt_rules); +} +my %old = load_symvers($ARGV[0]); +my %new = load_symvers($ARGV[1]); + +for my $sym (sort keys(%old)) { + if (!$new{$sym}) { + kabi_change($sym, $old{$sym}->{mod}, $old{$sym}->{crc}, 0); + } elsif ($old{$sym}->{crc} ne $new{$sym}->{crc}) { + kabi_change($sym, $new{$sym}->{mod}, $old{$sym}->{crc}, + $new{$sym}->{crc}); + } +} +if ($kabi_errors) { + print STDERR "KABI: aborting due to kabi changes.\n"; + exit 1; +} +exit 0; diff --git a/kabi.tar.bz2 b/kabi.tar.bz2 new file mode 100644 index 00000000..0b622623 --- /dev/null +++ b/kabi.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d268a3fba95a4822be04a478e75c6875671e730955f3f7da59caccad496e28 +size 426 diff --git a/kernel-binary.spec.in b/kernel-binary.spec.in new file mode 100644 index 00000000..24b2f96a --- /dev/null +++ b/kernel-binary.spec.in @@ -0,0 +1,800 @@ +# +# spec file for package kernel-@FLAVOR@ (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 + +%define srcversion @SRCVERSION@ +%define patchversion @PATCHVERSION@ +%define variant @VARIANT@%{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor @FLAVOR@ +%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/{@SCRIPTS@}) + +%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 -xjf %_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-@FLAVOR@ +Summary: @SUMMARY@ +Version: @RPMVERSION@ +%if %using_buildservice +Release: @RELEASE_PREFIX@ +%else +Release: @RELEASE_PREFIX@0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +@PROVIDES_OBSOLETES@ +@SOURCES@ +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: @ARCHS@ + +# These files are found in the kernel-source package: +@NOSOURCE@ + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 +@DESCRIPTION@ + +%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 @UNPACK_PATCHES@ + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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: @SUMMARY@ - base modules +License: GPL v2 only +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 +@DESCRIPTION@ + +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: @SUMMARY@ - Unsupported kernel modules +License: GPL v2 only +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 +@DESCRIPTION@ + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog diff --git a/kernel-debug.changes b/kernel-debug.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-debug.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-debug.spec b/kernel-debug.spec new file mode 100644 index 00000000..ffafb411 --- /dev/null +++ b/kernel-debug.spec @@ -0,0 +1,16441 @@ +# +# spec file for package kernel-debug (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor debug +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-debug +Summary: A Debug Version of the Kernel +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +%ifarch ppc64 +Provides: kernel-kdump +Obsoletes: kernel-kdump +%endif + +Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: %ix86 ia64 ppc64 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: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 +This kernel has several debug facilities enabled that hurt performance. +Only use this kernel when investigating problems. + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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: A Debug Version of the Kernel - base modules +License: GPL v2 only +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 +This kernel has several debug facilities enabled that hurt performance. +Only use this kernel when investigating problems. + +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: A Debug Version of the Kernel - Unsupported kernel modules +License: GPL v2 only +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 +This kernel has several debug facilities enabled that hurt performance. +Only use this kernel when investigating problems. + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-default.changes b/kernel-default.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-default.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-default.spec b/kernel-default.spec new file mode 100644 index 00000000..af73f672 --- /dev/null +++ b/kernel-default.spec @@ -0,0 +1,16454 @@ +# +# spec file for package kernel-default (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor default +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-default +Summary: The Standard Kernel +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +%ifarch %ix86 +Provides: smp kernel-smp +Obsoletes: smp kernel-smp +%endif +%ifarch ia64 +Provides: kernel-sn2 +Obsoletes: kernel-sn2 +%endif +%ifarch ppc64 +Provides: kernel-kdump +Obsoletes: kernel-kdump +%endif +%ifarch s390x +Provides: kernel-64bit +Obsoletes: kernel-64bit +%endif +%ifarch x86_64 +Provides: smp kernel-smp +Obsoletes: smp kernel-smp +%endif + +Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: %ix86 ia64 ppc ppc64 s390x 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: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 standard kernel for both uniprocessor and multiprocessor systems. + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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 Standard Kernel - base modules +License: GPL v2 only +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 standard kernel for both uniprocessor and multiprocessor systems. + +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 Standard Kernel - Unsupported kernel modules +License: GPL v2 only +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 standard kernel for both uniprocessor and multiprocessor systems. + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-desktop.changes b/kernel-desktop.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-desktop.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-desktop.spec b/kernel-desktop.spec new file mode 100644 index 00000000..25693bd3 --- /dev/null +++ b/kernel-desktop.spec @@ -0,0 +1,16474 @@ +# +# spec file for package kernel-desktop (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor desktop +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-desktop +Summary: Kernel optimized for the desktop +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.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: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 +This kernel is optimized for the desktop. It is configured for lower latency +and has many of the features that aren't usually used on desktop machines +disabled. + +%ifarch %ix86 +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. +%endif + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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: Kernel optimized for the desktop - base modules +License: GPL v2 only +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 +This kernel is optimized for the desktop. It is configured for lower latency +and has many of the features that aren't usually used on desktop machines +disabled. + +%ifarch %ix86 +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. +%endif + +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: Kernel optimized for the desktop - Unsupported kernel modules +License: GPL v2 only +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 +This kernel is optimized for the desktop. It is configured for lower latency +and has many of the features that aren't usually used on desktop machines +disabled. + +%ifarch %ix86 +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. +%endif + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-docs.changes b/kernel-docs.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-docs.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-docs.spec b/kernel-docs.spec new file mode 100644 index 00000000..14e26edb --- /dev/null +++ b/kernel-docs.spec @@ -0,0 +1,15662 @@ +# +# spec file for package kernel-docs (Version 3.1.rc8) +# +# 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 patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +Name: kernel-docs +Summary: Kernel Documentation +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel +BuildRequires: kernel-source%variant +Url: http://www.kernel.org/ +License: GPL v2 or later +Group: Documentation/Man +AutoReqProv: on +Provides: %name = %version-%source_rel +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%variant O=$PWD -k -i mandocs %{?jobs:-j%jobs} +make -C /usr/src/linux%variant 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%variant/{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 +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-docs.spec.in b/kernel-docs.spec.in new file mode 100644 index 00000000..cffff3a7 --- /dev/null +++ b/kernel-docs.spec.in @@ -0,0 +1,101 @@ +# +# 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 + +%define patchversion @PATCHVERSION@ +%define variant @VARIANT@%{nil} + +%include %_sourcedir/kernel-spec-macros + +Name: kernel-docs@VARIANT@ +Summary: Kernel Documentation +Version: @RPMVERSION@ +%if %using_buildservice +Release: @RELEASE_PREFIX@ +%else +Release: @RELEASE_PREFIX@0 +%endif +BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel +BuildRequires: kernel-source%variant +Url: http://www.kernel.org/ +License: GPL v2 or later +Group: Documentation/Man +AutoReqProv: on +Provides: %name = %version-%source_rel +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%variant O=$PWD -k -i mandocs %{?jobs:-j%jobs} +make -C /usr/src/linux%variant 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%variant/{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-ec2.changes b/kernel-ec2.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-ec2.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-ec2.spec b/kernel-ec2.spec new file mode 100644 index 00000000..f6eb1e68 --- /dev/null +++ b/kernel-ec2.spec @@ -0,0 +1,16444 @@ +# +# spec file for package kernel-ec2 (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor ec2 +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-ec2 +Summary: The Amazon EC2 Xen Kernel +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.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: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 only be used both as an unprivileged ("xenU") +kernel (for Amazon EC2). + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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 Amazon EC2 Xen Kernel - base modules +License: GPL v2 only +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 only be used both as an unprivileged ("xenU") +kernel (for Amazon EC2). + +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 Amazon EC2 Xen Kernel - Unsupported kernel modules +License: GPL v2 only +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 only be used both as an unprivileged ("xenU") +kernel (for Amazon EC2). + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-module-subpackage b/kernel-module-subpackage new file mode 100644 index 00000000..c70ba9e5 --- /dev/null +++ b/kernel-module-subpackage @@ -0,0 +1,75 @@ +%package -n %{-n*}-%1 +%define _this_kmp_version %{-v*}_k%(echo %2 | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/; # use 2.6.x.0 for mainline kernels') +Version: %_this_kmp_version +Release: %{-r*} +%( +for spec in {%_sourcedir,%_specdir}/%name.spec /dev/null; do + [ -e $spec ] && break +done +awk ' +BEGIN { tags["summary"] = "Summary: %summary" + tags["group"] = "Group: %group" } +/^%%/ { in_pkg_header = \ + ($0 ~ /^%%package[ \t]+KMP[ \t]*$/ || + $0 ~ /^%%package[ \t]+-n[ \t]*%name-KMP[ \t]*$/) + next } +in_pkg_header && /^(Summary|Group):[ \t]*/ \ + { tag = tolower($1) ; sub(/:$/, "", tag) + tags[tag] = $0 } +END { print tags["summary"] + print tags["group"] } +' $spec +) +Provides: %{-n*} = %_this_kmp_version +Provides: multiversion(kernel) +Requires: coreutils grep +Enhances: kernel-%1 +AutoReqProv: on +%{-p:%{expand:%(cd %_sourcedir; cat %{-p*})}} +%description -n %{-n*}-%1 +%( +for spec in {%_sourcedir,%_specdir}/%name.spec /dev/null; do + [ -e $spec ] && break +done +awk ' +/^%%/ { in_desc = \ + ($0 ~ /^%%description[ \t]+KMP[ \t]*$/ || + $0 ~ /^%%description[ \t]+-n[ \t]*%name-KMP[ \t]*$/) + next } +in_desc { print; good = 1 } +END { exit(! good) } +' $spec || \ +awk ' +/^%%/ { in_desc = \ + ($0 ~ /^%%description[ \t]*$/ || + $0 ~ /^%%description[ \t]+-n[ \t]*%name[ \t]*$/) + next } +in_desc { print; good = 1 } +END { exit(! good) } +' $spec +) +%post -n %{-n*}-%1 +nvr=%{-n*}-%1-%_this_kmp_version-%{-r*} +wm2=/usr/lib/module-init-tools/weak-modules2 +if [ -x $wm2 ]; then + %{-b:KMP_NEEDS_MKINITRD=1} /bin/bash -${-/e/} $wm2 --add-kmp $nvr +fi +%preun -n %{-n*}-%1 +nvr=%{-n*}-%1-%_this_kmp_version-%{-r*} +rpm -ql $nvr | sed -n '/\.ko$/p' > /var/run/rpm-$nvr-modules +%postun -n %{-n*}-%1 +nvr=%{-n*}-%1-%_this_kmp_version-%{-r*} +modules=( $(cat /var/run/rpm-$nvr-modules) ) +rm -f /var/run/rpm-$nvr-modules +if [ ${#modules[*]} = 0 ]; then + echo "WARNING: $nvr does not contain any kernel modules" >&2 + exit 0 +fi +wm2=/usr/lib/module-init-tools/weak-modules2 +if [ -x $wm2 ]; then + printf '%s\n' "${modules[@]}" | /bin/bash -${-/e/} $wm2 --remove-kmp $nvr +fi +%files -n %{-n*}-%1 +%{-f:%{expand:%(cd %_sourcedir; cat %{-f*})}} +%{!-f:%defattr (-,root,root)} +%{!-f:/lib/modules/%2-%1} diff --git a/kernel-pae.changes b/kernel-pae.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-pae.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-pae.spec b/kernel-pae.spec new file mode 100644 index 00000000..d0463bbe --- /dev/null +++ b/kernel-pae.spec @@ -0,0 +1,16459 @@ +# +# spec file for package kernel-pae (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor pae +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-pae +Summary: Kernel with PAE Support +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +%ifarch %ix86 +Provides: kernel-bigsmp +Obsoletes: kernel-bigsmp +%endif + +Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: %ix86 + +# These files are found in the kernel-source package: +NoSource: 0 +NoSource: 100 +NoSource: 101 +NoSource: 102 +NoSource: 103 +NoSource: 104 +NoSource: 105 +NoSource: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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: Kernel with PAE Support - base modules +License: GPL v2 only +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 +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. + +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: Kernel with PAE Support - Unsupported kernel modules +License: GPL v2 only +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 +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-ppc64.changes b/kernel-ppc64.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-ppc64.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-ppc64.spec b/kernel-ppc64.spec new file mode 100644 index 00000000..27031ccc --- /dev/null +++ b/kernel-ppc64.spec @@ -0,0 +1,16463 @@ +# +# spec file for package kernel-ppc64 (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor ppc64 +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-ppc64 +Summary: Kernel for ppc64 Systems +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +%ifarch ppc +Provides: kernel-pmac64 kernel-pseries64 kernel-iseries64 kernel-kdump +Obsoletes: kernel-pmac64 kernel-pseries64 kernel-iseries64 kernel-kdump +%endif +%ifarch ppc64 +Provides: kernel-kdump +Obsoletes: kernel-kdump +%endif + +Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: ppc ppc64 + +# These files are found in the kernel-source package: +NoSource: 0 +NoSource: 100 +NoSource: 101 +NoSource: 102 +NoSource: 103 +NoSource: 104 +NoSource: 105 +NoSource: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 +This package contains the kernel for: + +IBM pSeries 64bit machines IBM iSeries 64bit machines Apple G5 machines +Sony Playstation 3 + +The boot file is /boot/vmlinux. + +The home page of the ppc64 project is http://www.penguinppc.org/ + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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: Kernel for ppc64 Systems - base modules +License: GPL v2 only +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 +This package contains the kernel for: + +IBM pSeries 64bit machines IBM iSeries 64bit machines Apple G5 machines +Sony Playstation 3 + +The boot file is /boot/vmlinux. + +The home page of the ppc64 project is http://www.penguinppc.org/ + +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: Kernel for ppc64 Systems - Unsupported kernel modules +License: GPL v2 only +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 +This package contains the kernel for: + +IBM pSeries 64bit machines IBM iSeries 64bit machines Apple G5 machines +Sony Playstation 3 + +The boot file is /boot/vmlinux. + +The home page of the ppc64 project is http://www.penguinppc.org/ + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-s390.changes b/kernel-s390.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-s390.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-s390.spec b/kernel-s390.spec new file mode 100644 index 00000000..38b76e3e --- /dev/null +++ b/kernel-s390.spec @@ -0,0 +1,16438 @@ +# +# spec file for package kernel-s390 (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor s390 +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-s390 +Summary: The Standard Kernel +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +%ifarch s390 +Provides: kernel-32bit +Obsoletes: kernel-32bit +%endif + +Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: s390 + +# These files are found in the kernel-source package: +NoSource: 0 +NoSource: 100 +NoSource: 101 +NoSource: 102 +NoSource: 103 +NoSource: 104 +NoSource: 105 +NoSource: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 standard 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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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 Standard Kernel - base modules +License: GPL v2 only +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 standard 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 Standard Kernel - Unsupported kernel modules +License: GPL v2 only +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 standard 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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-source.changes b/kernel-source.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-source.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-source.rpmlintrc b/kernel-source.rpmlintrc new file mode 100644 index 00000000..a28c6396 --- /dev/null +++ b/kernel-source.rpmlintrc @@ -0,0 +1,2 @@ +# These zero-length files are correct: +addFilter("zero-length /usr/src/linux-2\.6\..*obj/.*include/config.*h") diff --git a/kernel-source.spec b/kernel-source.spec new file mode 100644 index 00000000..6b7fcbf4 --- /dev/null +++ b/kernel-source.spec @@ -0,0 +1,15819 @@ +# +# spec file for package kernel-source (Version 3.1.rc8) +# +# 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 +# icecream 0 + +%define srcversion 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} +%define vanilla_only 0 + +%include %_sourcedir/kernel-spec-macros + +%define src_install_dir usr/src/linux-%kernelrelease%variant + +Name: kernel-source +Summary: The Linux Kernel Sources +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +Group: Development/Sources +Url: http://www.kernel.org/ +AutoReqProv: off +BuildRequires: coreutils sed +BuildRequires: fdupes +Requires(post): coreutils sed +Provides: multiversion(kernel) +Provides: linux +Provides: %name = %version-%source_rel +Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +Prefix: /usr/src +# Source is only complete with devel files. +Requires: kernel-devel = %version-%release + +%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%define symbols %(set -- $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) +%define variant_symbols %(case %name in (*-rt) echo "RT" ;; esac) + +%define do_vanilla "%variant" == "" + +%description +Linux kernel sources with many fixes and improvements. + +%source_timestamp + +%package -n kernel-devel%variant +Summary: Development files needed for building kernel modules +License: GPL v2 only +Group: Development/Sources +AutoReqProv: off +Provides: multiversion(kernel) +Provides: kernel-devel%variant = %version-%source_rel + +%description -n kernel-devel%variant +Kernel-level headers and Makefiles required for development of +external kernel modules. + +%source_timestamp + +%package vanilla +Summary: Vanilla Linux kernel sources with minor build fixes. +License: GPL v2 only +Group: Development/Sources +AutoReqProv: off +Provides: multiversion(kernel) +Provides: %name-vanilla = %version-%source_rel + +%description vanilla +Vanilla Linux kernel sources with minor build fixes. + +%source_timestamp + +%prep +if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then + echo "Please get a copy of linux-%srcversion.tar.bz2 from" \ + "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/." +fi + +echo "Symbol(s): %symbols" + +# Unpack all sources and patches +%setup -q -c -T -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +%build +mkdir -p $RPM_BUILD_ROOT/usr/src +cd $RPM_BUILD_ROOT/usr/src + +# Unpack the vanilla kernel sources +tar -xjf %_sourcedir/linux-%srcversion.tar.bz2 +if test "%srcversion" != "%kernelrelease%variant"; then + mv linux-%srcversion linux-%kernelrelease%variant +fi + + +%if %do_vanilla +%if %vanilla_only + mv \ +%else + cp -al \ +%endif + linux-%kernelrelease%variant linux-%kernelrelease-vanilla +cd linux-%kernelrelease-vanilla +%_sourcedir/apply-patches --vanilla %_sourcedir/series.conf %my_builddir %symbols +rm -f $(find . -name ".gitignore") +cd .. +%endif + +%if ! %vanilla_only +ln -sf linux%variant linux%variant # dummy symlink + +cd linux-%kernelrelease%variant +%_sourcedir/apply-patches %_sourcedir/series.conf %my_builddir %symbols +rm -f $(find . -name ".gitignore") + +if [ -f %_sourcedir/localversion ] ; then + cat %_sourcedir/localversion > localversion +fi +%endif + +# Hardlink duplicate files automatically (from package fdupes). +%fdupes $RPM_BUILD_ROOT + +%install +%if ! %vanilla_only +# Install the documentation and example Kernel Module Package. +DOC=$RPM_BUILD_ROOT/usr/share/doc/packages/%name +mkdir -p $DOC +cp %_sourcedir/README.SUSE %_sourcedir/config-options.changes.txt $DOC +ln -s /usr/share/doc/packages/%name/README.SUSE %buildroot/%src_install_dir/ + +install -m 755 -d $RPM_BUILD_ROOT/etc/rpm +install -m 644 %_sourcedir/macros.kernel-source $RPM_BUILD_ROOT/etc/rpm/ +install -m 755 -d $RPM_BUILD_ROOT/usr/lib/rpm +install -m 644 %_sourcedir/kernel-module-subpackage \ + $RPM_BUILD_ROOT/usr/lib/rpm/ + +for script in post; do + sed -e "s:@KERNELRELEASE@:%kernelrelease:g" \ + -e "s:@SRCVARIANT@:%variant:g" \ + %_sourcedir/source-$script.sh > %name-$script.sh +done + +pushd "%buildroot" +perl "%_sourcedir/group-source-files.pl" \ + -D "$OLDPWD/devel.files" -N "$OLDPWD/nondevel.files" \ + -L "%src_install_dir" +popd + +# kernel-source and kernel-$flavor-devel are built independently, but the +# shipped sources (/usr/src/linux/) need to be older than generated files +# (/usr/src/linux-obj). We rely on the git commit timestamp to not point into +# the future and be thus lower than the timestamps of files built from the +# source (bnc#669669). +ts="$(head -n1 %_sourcedir/source-timestamp)" +find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" + +%post -f %name-post.sh + +%post -n kernel-devel%variant -f %name-post.sh + +%files -f nondevel.files +%defattr(-, root, root) +%ghost /usr/src/linux%variant +/usr/src/linux%variant-%kernelrelease/README.SUSE + +%files -n kernel-devel%variant -f devel.files +%defattr(-,root,root) +%ghost /usr/src/linux%variant +/usr/share/doc/packages/%name +/etc/rpm/macros.kernel-source +/usr/lib/rpm/kernel-module-subpackage +%endif + +%if %do_vanilla +%files vanilla +%defattr(-, root, root) +/usr/src/linux-%kernelrelease-vanilla +%endif + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-source.spec.in b/kernel-source.spec.in new file mode 100644 index 00000000..aea969dd --- /dev/null +++ b/kernel-source.spec.in @@ -0,0 +1,258 @@ +# +# spec file for package kernel-source@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 +# icecream 0 + +%define srcversion @SRCVERSION@ +%define patchversion @PATCHVERSION@ +%define variant @VARIANT@%{nil} +%define vanilla_only @VANILLA_ONLY@ + +%include %_sourcedir/kernel-spec-macros + +%define src_install_dir usr/src/linux-%kernelrelease%variant + +Name: kernel-source@VARIANT@ +Summary: The Linux Kernel Sources +Version: @RPMVERSION@ +%if %using_buildservice +Release: @RELEASE_PREFIX@ +%else +Release: @RELEASE_PREFIX@0 +%endif +License: GPL v2 only +Group: Development/Sources +Url: http://www.kernel.org/ +AutoReqProv: off +BuildRequires: coreutils sed +BuildRequires: fdupes +Requires(post): coreutils sed +Provides: multiversion(kernel) +Provides: linux +Provides: %name = %version-%source_rel +Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +Prefix: /usr/src +# Source is only complete with devel files. +Requires: kernel-devel = %version-%release + +%(chmod +x %_sourcedir/{@SCRIPTS@}) + +%define symbols %(set -- $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) +%define variant_symbols %(case %name in (*-rt) echo "RT" ;; esac) + +%define do_vanilla "%variant" == "" + +%description +Linux kernel sources with many fixes and improvements. + +%source_timestamp + +%package -n kernel-devel%variant +Summary: Development files needed for building kernel modules +License: GPL v2 only +Group: Development/Sources +AutoReqProv: off +Provides: multiversion(kernel) +Provides: kernel-devel%variant = %version-%source_rel + +%description -n kernel-devel%variant +Kernel-level headers and Makefiles required for development of +external kernel modules. + +%source_timestamp + +%package vanilla +Summary: Vanilla Linux kernel sources with minor build fixes. +License: GPL v2 only +Group: Development/Sources +AutoReqProv: off +Provides: multiversion(kernel) +Provides: %name-vanilla = %version-%source_rel + +%description vanilla +Vanilla Linux kernel sources with minor build fixes. + +%source_timestamp + +%prep +if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then + echo "Please get a copy of linux-%srcversion.tar.bz2 from" \ + "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/." +fi + +echo "Symbol(s): %symbols" + +# Unpack all sources and patches +%setup -q -c -T @UNPACK_PATCHES@ + +%build +mkdir -p $RPM_BUILD_ROOT/usr/src +cd $RPM_BUILD_ROOT/usr/src + +# Unpack the vanilla kernel sources +tar -xjf %_sourcedir/linux-%srcversion.tar.bz2 +if test "%srcversion" != "%kernelrelease%variant"; then + mv linux-%srcversion linux-%kernelrelease%variant +fi + + +%if %do_vanilla +%if %vanilla_only + mv \ +%else + cp -al \ +%endif + linux-%kernelrelease%variant linux-%kernelrelease-vanilla +cd linux-%kernelrelease-vanilla +%_sourcedir/apply-patches --vanilla %_sourcedir/series.conf %my_builddir %symbols +rm -f $(find . -name ".gitignore") +cd .. +%endif + +%if ! %vanilla_only +ln -sf linux%variant linux%variant # dummy symlink + +cd linux-%kernelrelease%variant +%_sourcedir/apply-patches %_sourcedir/series.conf %my_builddir %symbols +rm -f $(find . -name ".gitignore") + +if [ -f %_sourcedir/localversion ] ; then + cat %_sourcedir/localversion > localversion +fi +%endif + +# Hardlink duplicate files automatically (from package fdupes). +%fdupes $RPM_BUILD_ROOT + +%install +%if ! %vanilla_only +# Install the documentation and example Kernel Module Package. +DOC=$RPM_BUILD_ROOT/usr/share/doc/packages/%name +mkdir -p $DOC +cp %_sourcedir/README.SUSE %_sourcedir/config-options.changes.txt $DOC +ln -s /usr/share/doc/packages/%name/README.SUSE %buildroot/%src_install_dir/ + +install -m 755 -d $RPM_BUILD_ROOT/etc/rpm +install -m 644 %_sourcedir/macros.kernel-source $RPM_BUILD_ROOT/etc/rpm/ +install -m 755 -d $RPM_BUILD_ROOT/usr/lib/rpm +install -m 644 %_sourcedir/kernel-module-subpackage \ + $RPM_BUILD_ROOT/usr/lib/rpm/ + +for script in post; do + sed -e "s:@KERNELRELEASE@:%kernelrelease:g" \ + -e "s:@SRCVARIANT@:%variant:g" \ + %_sourcedir/source-$script.sh > %name-$script.sh +done + +pushd "%buildroot" +perl "%_sourcedir/group-source-files.pl" \ + -D "$OLDPWD/devel.files" -N "$OLDPWD/nondevel.files" \ + -L "%src_install_dir" +popd + +# kernel-source and kernel-$flavor-devel are built independently, but the +# shipped sources (/usr/src/linux/) need to be older than generated files +# (/usr/src/linux-obj). We rely on the git commit timestamp to not point into +# the future and be thus lower than the timestamps of files built from the +# source (bnc#669669). +ts="$(head -n1 %_sourcedir/source-timestamp)" +find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" + +%post -f %name-post.sh + +%post -n kernel-devel%variant -f %name-post.sh + +%files -f nondevel.files +%defattr(-, root, root) +%ghost /usr/src/linux%variant +/usr/src/linux%variant-%kernelrelease/README.SUSE + +%files -n kernel-devel%variant -f devel.files +%defattr(-,root,root) +%ghost /usr/src/linux%variant +/usr/share/doc/packages/%name +/etc/rpm/macros.kernel-source +/usr/lib/rpm/kernel-module-subpackage +%endif + +%if %do_vanilla +%files vanilla +%defattr(-, root, root) +/usr/src/linux-%kernelrelease-vanilla +%endif + +%changelog diff --git a/kernel-spec-macros b/kernel-spec-macros new file mode 100644 index 00000000..9a8b20ac --- /dev/null +++ b/kernel-spec-macros @@ -0,0 +1,36 @@ +# This file is included by all the kernel-*.spec files + +# Build with bash instead of sh as the shell: this turns on bash +# extensions like <(...). +%define _buildshell /bin/bash + +%define using_buildservice 0%{?opensuse_bs} + +# source_rel is the package release string, without the rebuild counter +# generated by the build service. In non-official builds, the upstream +# EXTRAVERSION component is also part of the release string, +# e.g. next.20110101.9.6 (hyphens are replaced by periods). Builds in the +# official distribution projects replace the release string though. +%define source_rel %release +%if %using_buildservice +%define source_rel %(release=%release; echo ${release%.*}) +%endif + +# release_num is the numeric source revision part of the release number, +# i.e. source_rel without the upstream tags like -rcX. A hyphen is added +# automatically for convenient use. +# examples: rc3 -> "", rc3.1 -> -1, next.20110101.9 -> -9 +# +# patchversion is inserted into the spec files by the mkspec script, it is the +# upstream release string unchanged, e.g. 2.6.38-rc3 +%define release_num %(upstream=%patchversion; upstream=${upstream#%version}; upstream=${upstream#-}; upstream=${upstream//-/.}; rel="%source_rel" ; res="${rel#$upstream}"; res=${res#.}; echo ${res:+-}${res}) + +# how the kernel release string (uname -r) should look like +%define kernelrelease %patchversion%release_num + +%define my_builddir %_builddir/%{name}-%{version} + +# macro to add the source timestamp to package descriptions +%define source_timestamp %(sed '1s/^/Source Timestamp: /' %_sourcedir/source-timestamp || :) + +# vim: ft=spec diff --git a/kernel-syms.changes b/kernel-syms.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-syms.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-syms.spec b/kernel-syms.spec new file mode 100644 index 00000000..0ddefe51 --- /dev/null +++ b/kernel-syms.spec @@ -0,0 +1,15644 @@ +# +# spec file for package kernel-syms (Version 3.1.rc8) +# +# 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 variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +Name: kernel-syms +Summary: Kernel Symbol Versions (modversions) +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0) +Release: %kernel_source_release +%endif +License: GPL v2 only +Group: Development/Sources +Url: http://www.kernel.org/ +AutoReqProv: off +BuildRequires: coreutils +%ifarch %ix86 ia64 ppc ppc64 s390x x86_64 +Requires: kernel-default-devel = %version-%source_rel +%endif +%ifarch %ix86 x86_64 +Requires: kernel-desktop-devel = %version-%source_rel +%endif +%ifarch %ix86 +Requires: kernel-pae-devel = %version-%source_rel +%endif +%ifarch ppc ppc64 +Requires: kernel-ppc64-devel = %version-%source_rel +%endif +%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) +Provides: %name = %version-%source_rel +Source: README.KSYMS +Requires: kernel-devel%variant = %version-%source_rel +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: %ix86 ia64 ppc ppc64 s390 s390x x86_64 +Prefix: /usr/src + +%description +Kernel symbols, such as functions and variables, have version +information attached to them. This package contains the symbol versions +for the standard kernels. + +This package is needed for compiling kernel module packages with proper +package dependencies. + +%source_timestamp + +%prep +%install +install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE + +%files +%defattr(-, root, root) +%dir %_docdir/%name +%_docdir/%name/README.SUSE + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-syms.spec.in b/kernel-syms.spec.in new file mode 100644 index 00000000..1959566b --- /dev/null +++ b/kernel-syms.spec.in @@ -0,0 +1,66 @@ +# +# spec file for package kernel-syms@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 + +%define variant @VARIANT@%{nil} + +%include %_sourcedir/kernel-spec-macros + +Name: kernel-syms@VARIANT@ +Summary: Kernel Symbol Versions (modversions) +Version: @RPMVERSION@ +%if %using_buildservice +Release: @RELEASE_PREFIX@ +%else +%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0) +Release: %kernel_source_release +%endif +License: GPL v2 only +Group: Development/Sources +Url: http://www.kernel.org/ +AutoReqProv: off +BuildRequires: coreutils +@REQUIRES@ +Provides: multiversion(kernel) +Provides: %name = %version-%source_rel +Source: README.KSYMS +Requires: kernel-devel%variant = %version-%source_rel +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: @ARCHS@ +Prefix: /usr/src + +%description +Kernel symbols, such as functions and variables, have version +information attached to them. This package contains the symbol versions +for the standard kernels. + +This package is needed for compiling kernel module packages with proper +package dependencies. + +%source_timestamp + +%prep +%install +install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE + +%files +%defattr(-, root, root) +%dir %_docdir/%name +%_docdir/%name/README.SUSE + +%changelog diff --git a/kernel-trace.changes b/kernel-trace.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-trace.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-trace.spec b/kernel-trace.spec new file mode 100644 index 00000000..72d26877 --- /dev/null +++ b/kernel-trace.spec @@ -0,0 +1,16446 @@ +# +# spec file for package kernel-trace (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor trace +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-trace +Summary: The Standard Kernel with Tracing Features +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +%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 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: %ix86 ia64 ppc64 s390 s390x 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: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 +This kernel has different tracing features enabled (e.g. utrace, ftrace). + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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 Standard Kernel with Tracing Features - base modules +License: GPL v2 only +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 +This kernel has different tracing features enabled (e.g. utrace, ftrace). + +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 Standard Kernel with Tracing Features - Unsupported kernel modules +License: GPL v2 only +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 +This kernel has different tracing features enabled (e.g. utrace, ftrace). + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-vanilla.changes b/kernel-vanilla.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-vanilla.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-vanilla.spec b/kernel-vanilla.spec new file mode 100644 index 00000000..1982623a --- /dev/null +++ b/kernel-vanilla.spec @@ -0,0 +1,16442 @@ +# +# spec file for package kernel-vanilla (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%define variant %{nil} + +%include %_sourcedir/kernel-spec-macros + +%define build_flavor vanilla +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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-vanilla +Summary: The Standard Kernel - without any SUSE patches +Version: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +%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 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +ExclusiveArch: %ix86 ia64 ppc ppc64 s390 s390x 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: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 standard kernel - without any SUSE patches + +%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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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 Standard Kernel - without any SUSE patches - base modules +License: GPL v2 only +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 standard kernel - without any SUSE patches + +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 Standard Kernel - without any SUSE patches - Unsupported kernel modules +License: GPL v2 only +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 standard kernel - without any SUSE patches + +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/kernel-xen.changes b/kernel-xen.changes new file mode 100644 index 00000000..c2bfc7e6 --- /dev/null +++ b/kernel-xen.changes @@ -0,0 +1,24269 @@ +------------------------------------------------------------------- +Mon Oct 3 18:22:13 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc8. +- commit 6c33ac4 + +------------------------------------------------------------------- +Wed Sep 28 16:41:36 CEST 2011 - jbeulich@novell.com + +- Update Xen config files. +- commit 50fb02f + +------------------------------------------------------------------- +Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de + +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc + +------------------------------------------------------------------- +Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz + +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + %_sourcedir/host-memcpy-hack.h to the compiler when compiling + userspace programs. +- commit 1de2384 + +------------------------------------------------------------------- +Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 + +------------------------------------------------------------------- +Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc7. +- commit ee8cc90 + +------------------------------------------------------------------- +Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de + +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 + +------------------------------------------------------------------- +Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz + +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c + +------------------------------------------------------------------- +Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz + +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 + +------------------------------------------------------------------- +Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de + +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 + +------------------------------------------------------------------- +Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de + +- Update to 3.1-rc6. +- commit 8f0eaba + +------------------------------------------------------------------- +Thu Sep 15 09:30:03 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 + +------------------------------------------------------------------- +Wed Sep 14 01:16:42 CEST 2011 - agraf@suse.de + +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd + +------------------------------------------------------------------- +Mon Sep 12 16:47:37 CEST 2011 - jbeulich@novell.com + +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 + +------------------------------------------------------------------- +Mon Sep 12 16:44:34 CEST 2011 - jbeulich@novell.com + +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 + +------------------------------------------------------------------- +Mon Sep 12 16:31:26 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 + +------------------------------------------------------------------- +Sun Sep 11 17:47:54 CEST 2011 - agraf@suse.de + +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c + +------------------------------------------------------------------- +Sun Sep 11 17:45:32 CEST 2011 - agraf@suse.de + +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d + +------------------------------------------------------------------- +Mon Sep 5 09:52:24 CEST 2011 - mmarek@suse.cz + +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 + +------------------------------------------------------------------- +Fri Sep 2 18:29:33 CEST 2011 - ohering@suse.de + +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 + +------------------------------------------------------------------- +Thu Sep 1 18:47:37 CEST 2011 - ohering@suse.de + +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b + +------------------------------------------------------------------- +Tue Aug 30 16:03:53 CEST 2011 - jdelvare@suse.de + +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 + +------------------------------------------------------------------- +Tue Aug 30 06:30:17 CEST 2011 - gregkh@suse.de + +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba + +------------------------------------------------------------------- +Mon Aug 29 16:24:05 CEST 2011 - jeffm@suse.com + +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c + +------------------------------------------------------------------- +Mon Aug 29 15:44:32 CEST 2011 - jeffm@suse.com + +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac + +------------------------------------------------------------------- +Mon Aug 29 15:31:44 CEST 2011 - jeffm@suse.com + +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 + +------------------------------------------------------------------- +Mon Aug 29 15:25:47 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc4. +- commit 68e08b1 + +------------------------------------------------------------------- +Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com + +- PTI: depends on X86 && PCI. +- commit e975e4b + +------------------------------------------------------------------- +Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com + +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 + +------------------------------------------------------------------- +Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com + +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b + +------------------------------------------------------------------- +Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com + +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd + +------------------------------------------------------------------- +Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com + +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc + +------------------------------------------------------------------- +Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de + +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e + +------------------------------------------------------------------- +Sun Aug 14 14:06:35 CEST 2011 - trenn@suse.de + +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a + +------------------------------------------------------------------- +Sat Aug 13 02:31:53 CEST 2011 - gregkh@suse.de + +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 + +------------------------------------------------------------------- +Tue Aug 9 00:03:53 CEST 2011 - trenn@suse.de + +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 + +------------------------------------------------------------------- +Mon Aug 1 14:51:58 CEST 2011 - mmarek@suse.cz + +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c + +------------------------------------------------------------------- +Fri Jul 29 13:06:34 CEST 2011 - jslaby@suse.cz + +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c + +------------------------------------------------------------------- +Mon Jul 25 12:42:29 CEST 2011 - mmarek@suse.cz + +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 + +------------------------------------------------------------------- +Mon Jul 25 08:57:43 CEST 2011 - meissner@suse.de + +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 + +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + +------------------------------------------------------------------- +Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz + +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d + +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + +------------------------------------------------------------------- +Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de + +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 + +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + +------------------------------------------------------------------- +Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz + +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a + +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + +------------------------------------------------------------------- +Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de + +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 + +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + +------------------------------------------------------------------- +Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz + +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 + +------------------------------------------------------------------- +Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz + +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed + +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + +------------------------------------------------------------------- +Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de + +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 + +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + +------------------------------------------------------------------- +Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de + +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 + +------------------------------------------------------------------- +Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 + +------------------------------------------------------------------- +Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 + +------------------------------------------------------------------- +Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Fix perl warning +- commit 395d7d8 + +------------------------------------------------------------------- +Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de + +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 + +------------------------------------------------------------------- +Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d + +------------------------------------------------------------------- +Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz + +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b + +------------------------------------------------------------------- +Fri Jun 3 13:09:27 CEST 2011 - mmarek@suse.cz + +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b + +------------------------------------------------------------------- +Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz + +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 + +------------------------------------------------------------------- +Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz + +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 + +------------------------------------------------------------------- +Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com + +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 + +------------------------------------------------------------------- +Tue May 31 05:09:44 CEST 2011 - jeffm@suse.com + +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 + +------------------------------------------------------------------- +Tue May 31 05:08:21 CEST 2011 - jeffm@suse.com + +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 + +------------------------------------------------------------------- +Mon May 30 15:54:37 CEST 2011 - jack@suse.cz + +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a + +------------------------------------------------------------------- +Mon May 30 13:58:43 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 + +------------------------------------------------------------------- +Fri May 27 14:30:48 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 + +------------------------------------------------------------------- +Mon May 23 13:35:38 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff + +------------------------------------------------------------------- +Fri May 20 20:20:17 CEST 2011 - jslaby@suse.cz + +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce + +------------------------------------------------------------------- +Fri May 20 09:54:30 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 + +------------------------------------------------------------------- +Fri May 20 09:41:02 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a + +------------------------------------------------------------------- +Fri May 20 02:27:58 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-final. +- commit 7c72384 + +------------------------------------------------------------------- +Thu May 19 13:23:06 CEST 2011 - jbeulich@novell.com + +- supported.conf: blktap2 modules are supported. +- commit fa60394 + +------------------------------------------------------------------- +Mon May 16 14:34:33 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c + +------------------------------------------------------------------- +Fri May 13 15:45:04 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f + +------------------------------------------------------------------- +Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz + +- block: add proper state guards to __elv_next_request. +- commit bcb6433 + +------------------------------------------------------------------- +Thu May 12 14:05:44 CEST 2011 - jslaby@suse.cz + +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d + +------------------------------------------------------------------- +Thu May 12 11:56:16 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 + +------------------------------------------------------------------- +Tue May 10 19:10:18 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf + +------------------------------------------------------------------- +Tue May 10 16:14:44 CEST 2011 - mhocko@suse.cz + +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e + +------------------------------------------------------------------- +Tue May 10 16:04:27 CEST 2011 - mhocko@suse.cz + +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 + +------------------------------------------------------------------- +Tue May 10 14:52:00 CEST 2011 - mmarek@suse.cz + +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 + +------------------------------------------------------------------- +Mon May 9 14:32:59 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e + +------------------------------------------------------------------- +Mon May 9 11:32:35 CEST 2011 - jbeulich@novell.com + +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d + +------------------------------------------------------------------- +Sat May 7 01:50:06 CEST 2011 - jeffm@suse.com + +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 + +------------------------------------------------------------------- +Fri May 6 19:36:47 CEST 2011 - jeffm@suse.com + +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f + +------------------------------------------------------------------- +Fri May 6 19:31:10 CEST 2011 - jeffm@suse.com + +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 + +------------------------------------------------------------------- +Fri May 6 18:51:20 CEST 2011 - jeffm@suse.com + +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f + +------------------------------------------------------------------- +Fri May 6 17:50:56 CEST 2011 - jeffm@suse.com + +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 + +------------------------------------------------------------------- +Fri May 6 17:25:45 CEST 2011 - jeffm@suse.com + +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed + +------------------------------------------------------------------- +Fri May 6 16:41:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 + +------------------------------------------------------------------- +Thu May 5 22:35:53 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 97ce5d8 + +------------------------------------------------------------------- +Thu May 5 22:23:21 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 + +------------------------------------------------------------------- +Tue May 3 03:08:18 CEST 2011 - tonyj@suse.de + +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a + +------------------------------------------------------------------- +Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com + +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 + +------------------------------------------------------------------- +Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de + +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 + +------------------------------------------------------------------- +Fri Apr 29 08:03:38 CEST 2011 - tiwai@suse.de + +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 + +------------------------------------------------------------------- +Fri Apr 29 00:36:03 CEST 2011 - gregkh@suse.de + +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d + +------------------------------------------------------------------- +Fri Apr 29 00:17:46 CEST 2011 - jbenc@suse.cz + +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 + +------------------------------------------------------------------- +Thu Apr 28 23:32:44 CEST 2011 - rjw@suse.de + +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b + +------------------------------------------------------------------- +Thu Apr 28 23:16:27 CEST 2011 - rjw@suse.de + +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 + +------------------------------------------------------------------- +Thu Apr 28 21:38:22 CEST 2011 - jslaby@suse.cz + +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae + +------------------------------------------------------------------- +Thu Apr 28 20:56:33 CEST 2011 - jslaby@suse.cz + +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa + +------------------------------------------------------------------- +Thu Apr 28 20:30:56 CEST 2011 - bphilips@suse.de + +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 + +------------------------------------------------------------------- +Thu Apr 28 20:19:59 CEST 2011 - bphilips@suse.de + +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 + +------------------------------------------------------------------- +Thu Apr 28 19:27:51 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb + +------------------------------------------------------------------- +Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com + +- Update i386 Xen config files. +- commit 7b776ee + +------------------------------------------------------------------- +Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz + +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 + +------------------------------------------------------------------- +Thu Apr 28 14:18:12 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 + +------------------------------------------------------------------- +Wed Apr 27 22:20:02 CEST 2011 - jeffm@suse.com + +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 + +------------------------------------------------------------------- +Wed Apr 27 22:19:47 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a + +------------------------------------------------------------------- +Wed Apr 27 22:04:11 CEST 2011 - jeffm@suse.com + +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 + +------------------------------------------------------------------- +Wed Apr 27 22:02:19 CEST 2011 - jeffm@suse.com + +- Removed Swap-over-NFS patches. +- commit e061d16 + +------------------------------------------------------------------- +Wed Apr 27 21:59:47 CEST 2011 - jeffm@suse.com + +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 + +------------------------------------------------------------------- +Wed Apr 27 21:56:53 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 + +------------------------------------------------------------------- +Wed Apr 27 21:51:44 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f + +------------------------------------------------------------------- +Wed Apr 27 21:40:25 CEST 2011 - jeffm@suse.com + +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 + +------------------------------------------------------------------- +Wed Apr 27 21:35:51 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 + +------------------------------------------------------------------- +Wed Apr 27 21:34:22 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 + +------------------------------------------------------------------- +Wed Apr 27 21:34:13 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 + +------------------------------------------------------------------- +Wed Apr 27 21:29:24 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c + +------------------------------------------------------------------- +Wed Apr 27 21:11:59 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 + +------------------------------------------------------------------- +Wed Apr 27 20:48:55 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 + +------------------------------------------------------------------- +Wed Apr 27 20:46:52 CEST 2011 - jeffm@suse.com + +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 + +------------------------------------------------------------------- +Wed Apr 27 20:32:46 CEST 2011 - jeffm@suse.com + +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 + +------------------------------------------------------------------- +Wed Apr 27 20:29:40 CEST 2011 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 + +------------------------------------------------------------------- +Wed Apr 27 20:18:37 CEST 2011 - jeffm@suse.com + +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 + +------------------------------------------------------------------- +Wed Apr 27 20:16:52 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 + +------------------------------------------------------------------- +Wed Apr 27 20:16:00 CEST 2011 - jeffm@suse.com + +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f + +------------------------------------------------------------------- +Wed Apr 27 20:15:02 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 + +------------------------------------------------------------------- +Wed Apr 27 19:44:09 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f + +------------------------------------------------------------------- +Wed Apr 27 19:43:47 CEST 2011 - jeffm@suse.com + +- Delete patches.trace/utrace-core. +- commit a9639aa + +------------------------------------------------------------------- +Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz + +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f + +------------------------------------------------------------------- +Fri Apr 22 00:01:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e + +------------------------------------------------------------------- +Tue Apr 19 23:37:06 CEST 2011 - jack@suse.cz + +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 + +------------------------------------------------------------------- +Tue Apr 19 23:32:54 CEST 2011 - jack@suse.cz + +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 + +------------------------------------------------------------------- +Tue Apr 19 23:30:34 CEST 2011 - jack@suse.cz + +- Update vanilla config files. +- commit 5e3c232 + +------------------------------------------------------------------- +Tue Apr 19 17:41:41 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 + +------------------------------------------------------------------- +Tue Apr 19 17:16:52 CEST 2011 - jeffm@suse.com + +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e + +------------------------------------------------------------------- +Mon Apr 18 10:30:49 CEST 2011 - eich@suse.de + +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 + +------------------------------------------------------------------- +Sat Apr 16 19:18:05 CEST 2011 - trenn@suse.de + +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a + +------------------------------------------------------------------- +Sat Apr 16 18:42:01 CEST 2011 - trenn@suse.de + +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b + +------------------------------------------------------------------- +Sat Apr 16 00:31:11 CEST 2011 - jack@suse.cz + +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 + +------------------------------------------------------------------- +Fri Apr 15 20:24:29 CEST 2011 - jeffm@suse.com + +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b + +------------------------------------------------------------------- +Fri Apr 15 17:57:25 CEST 2011 - jack@suse.cz + +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 + +------------------------------------------------------------------- +Fri Apr 15 13:24:21 CEST 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 + +------------------------------------------------------------------- +Fri Apr 15 13:21:49 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c + +------------------------------------------------------------------- +Thu Apr 14 18:43:07 CEST 2011 - jeffm@suse.com + +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 + +------------------------------------------------------------------- +Thu Apr 14 01:28:00 CEST 2011 - jeffm@suse.com + +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 + +------------------------------------------------------------------- +Wed Apr 13 16:53:14 CEST 2011 - jeffm@suse.com + +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb + +------------------------------------------------------------------- +Wed Apr 13 04:01:31 CEST 2011 - jeffm@suse.de + +- fhandle: Add for ia64. +- commit 83cec5a + +------------------------------------------------------------------- +Wed Apr 13 03:30:36 CEST 2011 - jeffm@suse.com + +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 + +------------------------------------------------------------------- +Wed Apr 13 03:20:30 CEST 2011 - jeffm@suse.com + +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 + +------------------------------------------------------------------- +Tue Apr 12 21:30:55 CEST 2011 - jeffm@suse.com + +- gma500: Depend on X86. +- commit 3aa298c + +------------------------------------------------------------------- +Tue Apr 12 20:46:13 CEST 2011 - jeffm@suse.com + +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 + +------------------------------------------------------------------- +Tue Apr 12 20:28:31 CEST 2011 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 + +------------------------------------------------------------------- +Tue Apr 12 20:25:11 CEST 2011 - jeffm@suse.com + +- olpc: Add . +- commit 58ce0db + +------------------------------------------------------------------- +Tue Apr 12 19:37:48 CEST 2011 - jeffm@suse.com + +- Update config files for -vanilla. +- commit 52fe306 + +------------------------------------------------------------------- +Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com + +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 + +------------------------------------------------------------------- +Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de + +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 + +------------------------------------------------------------------- +Wed Apr 6 09:01:38 CEST 2011 - jeffm@suse.de + +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 + +------------------------------------------------------------------- +Tue Apr 5 10:42:22 CEST 2011 - jslaby@suse.cz + +- remove obsolete comment from series.conf +- commit 4bad172 + +------------------------------------------------------------------- +Wed Mar 30 23:50:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 + +------------------------------------------------------------------- +Wed Mar 30 10:32:32 CEST 2011 - jslaby@suse.cz + +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 + +------------------------------------------------------------------- +Mon Mar 28 16:08:19 CEST 2011 - trenn@suse.de + +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b + +------------------------------------------------------------------- +Mon Mar 28 15:23:44 CEST 2011 - trenn@suse.de + +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 + +------------------------------------------------------------------- +Mon Mar 28 14:07:07 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d + +------------------------------------------------------------------- +Mon Mar 28 13:00:56 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec + +------------------------------------------------------------------- +Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 + +------------------------------------------------------------------- +Thu Mar 24 16:21:06 CET 2011 - jslaby@suse.cz + +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 + +------------------------------------------------------------------- +Thu Mar 24 14:02:20 CET 2011 - tiwai@suse.de + +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 + +------------------------------------------------------------------- +Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz + +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac + +------------------------------------------------------------------- +Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz + +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 + +------------------------------------------------------------------- +Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz + +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b + +------------------------------------------------------------------- +Fri Mar 18 18:23:45 CET 2011 - jslaby@suse.cz + +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 + +------------------------------------------------------------------- +Fri Mar 18 10:43:53 CET 2011 - jslaby@suse.cz + +- SPI: dw_spi, fix PPC build. +- commit 80ca063 + +------------------------------------------------------------------- +Fri Mar 18 08:48:08 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 + +------------------------------------------------------------------- +Thu Mar 17 12:24:09 CET 2011 - sjayaraman@suse.de + +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 + +------------------------------------------------------------------- +Tue Mar 15 16:19:53 CET 2011 - jeffm@suse.com + +- Update to 2.6.38. +- commit f2ec6ad + +------------------------------------------------------------------- +Mon Mar 14 01:22:01 CET 2011 - jeffm@suse.com + +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d + +------------------------------------------------------------------- +Fri Mar 11 14:37:00 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca + +------------------------------------------------------------------- +Fri Mar 11 14:19:55 CET 2011 - jbeulich@novell.com + +- fix i386 unwind annotations. +- commit 02bd501 + +------------------------------------------------------------------- +Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 + +------------------------------------------------------------------- +Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %supported_modules_check == 0. +- commit 88d5daa + +------------------------------------------------------------------- +Wed Mar 2 09:02:40 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b + +------------------------------------------------------------------- +Mon Feb 28 15:34:35 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac + +------------------------------------------------------------------- +Thu Feb 24 16:27:46 CET 2011 - tiwai@suse.de + +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c + +------------------------------------------------------------------- +Wed Feb 23 23:03:41 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 + +------------------------------------------------------------------- +Tue Feb 22 21:49:18 CET 2011 - jeffm@suse.com + +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb + +------------------------------------------------------------------- +Tue Feb 22 10:00:42 CET 2011 - mmarek@suse.cz + +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba + +------------------------------------------------------------------- +Mon Feb 21 10:31:05 CET 2011 - tiwai@suse.de + +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b + +------------------------------------------------------------------- +Fri Feb 18 23:13:58 CET 2011 - rjw@suse.de + +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 + +------------------------------------------------------------------- +Thu Feb 17 02:28:52 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc5. +- commit 8344657 + +------------------------------------------------------------------- +Thu Feb 17 01:24:01 CET 2011 - gregkh@suse.de + +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 + +------------------------------------------------------------------- +Wed Feb 16 16:14:52 CET 2011 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 + +------------------------------------------------------------------- +Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz + +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 + +------------------------------------------------------------------- +Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz + +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 + +------------------------------------------------------------------- +Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 + +------------------------------------------------------------------- +Thu Feb 10 02:57:43 CET 2011 - jeffm@suse.com + +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 + +------------------------------------------------------------------- +Wed Feb 9 22:55:13 CET 2011 - gregkh@suse.de + +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa + +------------------------------------------------------------------- +Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 + +------------------------------------------------------------------- +Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 + +------------------------------------------------------------------- +Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc + +------------------------------------------------------------------- +Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a + +------------------------------------------------------------------- +Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com + +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c + +------------------------------------------------------------------- +Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e + +------------------------------------------------------------------- +Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com + +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda + +------------------------------------------------------------------- +Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de + +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f + +------------------------------------------------------------------- +Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz + +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c + +------------------------------------------------------------------- +Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 + +------------------------------------------------------------------- +Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %release_major and rename it to %release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 + +------------------------------------------------------------------- +Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 + +------------------------------------------------------------------- +Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com + +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a + +------------------------------------------------------------------- +Fri Feb 4 01:44:50 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca + +------------------------------------------------------------------- +Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de + +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 + +------------------------------------------------------------------- +Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz + +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c + +------------------------------------------------------------------- +Sun Jan 23 23:18:14 CET 2011 - jeffm@suse.com + +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 + +------------------------------------------------------------------- +Sun Jan 23 02:20:06 CET 2011 - jeffm@suse.de + +- winbond: needs for msleep and friends. +- commit e394a2e + +------------------------------------------------------------------- +Sun Jan 23 02:17:51 CET 2011 - jeffm@suse.de + +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 + +------------------------------------------------------------------- +Sun Jan 23 02:16:20 CET 2011 - jeffm@suse.de + +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 + +------------------------------------------------------------------- +Sun Jan 23 00:25:45 CET 2011 - jeffm@suse.com + +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 + +------------------------------------------------------------------- +Sun Jan 23 00:20:41 CET 2011 - jeffm@suse.com + +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 + +------------------------------------------------------------------- +Sun Jan 23 00:09:06 CET 2011 - jeffm@suse.com + +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d + +------------------------------------------------------------------- +Sat Jan 22 23:45:07 CET 2011 - jeffm@suse.com + +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 + +------------------------------------------------------------------- +Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com + +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 + +------------------------------------------------------------------- +Sat Jan 22 00:32:08 CET 2011 - jeffm@suse.de + +- Updated some Patch-mainline headers. +- commit 9122bf0 + +------------------------------------------------------------------- +Sat Jan 22 00:27:46 CET 2011 - jeffm@suse.de + +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 + +------------------------------------------------------------------- +Fri Jan 21 02:42:39 CET 2011 - trenn@suse.de + +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff + +------------------------------------------------------------------- +Wed Jan 19 21:13:46 CET 2011 - jbohac@suse.cz + +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac + +------------------------------------------------------------------- +Tue Jan 18 01:48:18 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 + +------------------------------------------------------------------- +Tue Jan 18 00:19:14 CET 2011 - trenn@suse.de + +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 + +------------------------------------------------------------------- +Mon Jan 17 20:52:49 CET 2011 - jeffm@suse.com + +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 + +------------------------------------------------------------------- +Fri Jan 14 16:29:03 CET 2011 - mmarek@suse.cz + +- Revert %kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 + +------------------------------------------------------------------- +Thu Jan 13 21:29:19 CET 2011 - jkosina@suse.cz + +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 + +------------------------------------------------------------------- +Wed Jan 12 21:32:17 CET 2011 - jeffm@suse.com + +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 + +------------------------------------------------------------------- +Tue Jan 11 16:25:30 CET 2011 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 + +------------------------------------------------------------------- +Mon Jan 10 18:25:08 CET 2011 - jack@suse.cz + +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 + +------------------------------------------------------------------- +Mon Jan 10 16:23:03 CET 2011 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 + +------------------------------------------------------------------- +Mon Jan 10 15:31:02 CET 2011 - jeffm@suse.com + +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 + +------------------------------------------------------------------- +Sat Jan 8 17:11:58 CET 2011 - jengelh@medozas.de + +- config: run oldconfig on sparc64/default +- commit aa3e940 + +------------------------------------------------------------------- +Sat Jan 8 15:12:02 CET 2011 - jengelh@medozas.de + +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d + +------------------------------------------------------------------- +Fri Jan 7 16:03:50 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 + +------------------------------------------------------------------- +Fri Jan 7 15:44:47 CET 2011 - trenn@suse.de + +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 + +------------------------------------------------------------------- +Fri Jan 7 00:20:37 CET 2011 - neilb@suse.de + +- Remove old patch +- commit 7fc009b + +------------------------------------------------------------------- +Thu Jan 6 20:51:31 CET 2011 - jeffm@suse.com + +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac + +------------------------------------------------------------------- +Thu Jan 6 19:48:28 CET 2011 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Move the source tree if %kernelrelease is + different from the tarball version. +- commit 6be9ffe + +------------------------------------------------------------------- +Thu Jan 6 17:44:53 CET 2011 - mmarek@suse.cz + +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d + +------------------------------------------------------------------- +Thu Jan 6 17:09:12 CET 2011 - jeffm@suse.com + +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b + +------------------------------------------------------------------- +Thu Jan 6 17:08:44 CET 2011 - jeffm@suse.com + +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d + +------------------------------------------------------------------- +Thu Jan 6 16:10:26 CET 2011 - jeffm@suse.com + +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 + +------------------------------------------------------------------- +Thu Jan 6 15:49:34 CET 2011 - jack@suse.cz + +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe + +------------------------------------------------------------------- +Thu Jan 6 13:56:07 CET 2011 - mmarek@suse.cz + +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 + +------------------------------------------------------------------- +Thu Jan 6 10:07:22 CET 2011 - mgalbraith@suse.de + +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b + +------------------------------------------------------------------- +Thu Jan 6 01:24:14 CET 2011 - jeffm@suse.com + +- Update to 2.6.37-final. +- commit f4cd126 + +------------------------------------------------------------------- +Thu Dec 30 00:50:58 CET 2010 - jeffm@suse.com + +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa + +------------------------------------------------------------------- +Wed Dec 29 22:23:21 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 + +------------------------------------------------------------------- +Tue Dec 28 07:01:24 CET 2010 - mgalbraith@suse.de + +- sched: fix autogroup /proc interface race. +- commit fd7019c + +------------------------------------------------------------------- +Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com + +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb + +------------------------------------------------------------------- +Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com + +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 + +------------------------------------------------------------------- +Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c + +------------------------------------------------------------------- +Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz + +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 + +------------------------------------------------------------------- +Mon Dec 20 11:33:32 CET 2010 - jslaby@suse.cz + +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 + +------------------------------------------------------------------- +Mon Dec 20 11:29:01 CET 2010 - jslaby@suse.cz + +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 + +------------------------------------------------------------------- +Mon Dec 20 11:19:41 CET 2010 - jslaby@suse.cz + +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 + +------------------------------------------------------------------- +Thu Dec 16 23:21:40 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Define %kernelrelease +- commit 1d67b13 + +------------------------------------------------------------------- +Thu Dec 16 22:31:42 CET 2010 - jeffm@suse.com + +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 + +------------------------------------------------------------------- +Mon Dec 13 12:17:49 CET 2010 - jbeulich@novell.com + +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff + +------------------------------------------------------------------- +Mon Dec 13 09:12:36 CET 2010 - tiwai@suse.de + +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 + +------------------------------------------------------------------- +Fri Dec 10 09:23:46 CET 2010 - jslaby@suse.cz + +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 + +------------------------------------------------------------------- +Fri Dec 10 09:20:34 CET 2010 - jbeulich@novell.com + +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f + +------------------------------------------------------------------- +Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d + +------------------------------------------------------------------- +Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b + +------------------------------------------------------------------- +Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 + +------------------------------------------------------------------- +Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 + +------------------------------------------------------------------- +Tue Dec 7 16:38:29 CET 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 + +------------------------------------------------------------------- +Tue Dec 7 16:35:04 CET 2010 - jeffm@suse.com + +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b + +------------------------------------------------------------------- +Tue Dec 7 16:32:30 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit f55f81b + +------------------------------------------------------------------- +Tue Dec 7 16:14:14 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc5. +- commit ca102d9 + +------------------------------------------------------------------- +Tue Dec 7 09:40:37 CET 2010 - jbeulich@novell.com + +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 + +------------------------------------------------------------------- +Mon Dec 6 12:40:34 CET 2010 - mgalbraith@suse.de + +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b + +------------------------------------------------------------------- +Mon Dec 6 09:12:01 CET 2010 - jbeulich@novell.com + +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c + +------------------------------------------------------------------- +Mon Dec 6 05:38:40 CET 2010 - jeffm@suse.com + +- Fixed corrupted -rc4 patch. +- commit 9802d4e + +------------------------------------------------------------------- +Mon Dec 6 05:09:48 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc4. +- commit d102b44 + +------------------------------------------------------------------- +Mon Nov 29 18:22:04 CET 2010 - jeffm@suse.com + +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 + +------------------------------------------------------------------- +Mon Nov 29 16:57:39 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 + +------------------------------------------------------------------- +Fri Nov 26 15:04:27 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 + +------------------------------------------------------------------- +Fri Nov 26 00:24:58 CET 2010 - trenn@suse.de + +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d + +------------------------------------------------------------------- +Wed Nov 24 15:49:45 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3-git1. +- commit 4ad245f + +------------------------------------------------------------------- +Mon Nov 22 19:48:15 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac + +------------------------------------------------------------------- +Mon Nov 22 10:21:28 CET 2010 - jslaby@suse.cz + +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 + +------------------------------------------------------------------- +Sun Nov 21 16:35:45 CET 2010 - jslaby@suse.cz + +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 + +------------------------------------------------------------------- +Wed Nov 17 17:10:32 CET 2010 - jeffm@suse.com + +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 + +------------------------------------------------------------------- +Tue Nov 16 21:32:45 CET 2010 - jeffm@suse.de + +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 + +------------------------------------------------------------------- +Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc2. +- commit 1453a04 + +------------------------------------------------------------------- +Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz + +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 + +------------------------------------------------------------------- +Mon Nov 15 21:33:19 CET 2010 - jeffm@suse.com + +- Update vanilla config files. +- commit 60b4a47 + +------------------------------------------------------------------- +Mon Nov 15 21:30:37 CET 2010 - jeffm@suse.com + +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 + +------------------------------------------------------------------- +Mon Nov 15 20:02:33 CET 2010 - jeffm@suse.com + +- supported.conf: Added missing dependencies. +- commit 0537c35 + +------------------------------------------------------------------- +Sat Nov 13 10:08:17 CET 2010 - jslaby@suse.cz + +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf + +------------------------------------------------------------------- +Fri Nov 12 18:37:10 CET 2010 - jeffm@suse.de + +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 + +------------------------------------------------------------------- +Thu Nov 11 19:37:05 CET 2010 - gregkh@suse.de + +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 + +------------------------------------------------------------------- +Thu Nov 11 13:48:24 CET 2010 - jslaby@suse.cz + +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 + +------------------------------------------------------------------- +Thu Nov 11 11:18:45 CET 2010 - jslaby@suse.cz + +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 + +------------------------------------------------------------------- +Tue Nov 9 15:28:57 CET 2010 - jack@suse.cz + +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 + +------------------------------------------------------------------- +Fri Oct 29 13:47:35 CEST 2010 - jslaby@suse.cz + +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb + +------------------------------------------------------------------- +Fri Oct 29 01:53:34 CEST 2010 - trenn@suse.de + +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b + +------------------------------------------------------------------- +Wed Oct 27 16:27:15 CEST 2010 - jslaby@suse.cz + +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c + +------------------------------------------------------------------- +Wed Oct 27 14:51:30 CEST 2010 - jslaby@suse.cz + +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 + +------------------------------------------------------------------- +Tue Oct 26 21:31:22 CEST 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 + +------------------------------------------------------------------- +Tue Oct 26 13:41:23 CEST 2010 - jbeulich@novell.com + +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 + +------------------------------------------------------------------- +Mon Oct 25 12:53:38 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 + +------------------------------------------------------------------- +Mon Oct 25 08:58:15 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda + +------------------------------------------------------------------- +Fri Oct 22 21:18:25 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-final. +- commit 1b1584f + +------------------------------------------------------------------- +Fri Oct 22 13:32:04 CEST 2010 - jbeulich@novell.com + +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb + +------------------------------------------------------------------- +Thu Oct 21 10:11:03 CEST 2010 - sjayaraman@suse.de + +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 + +------------------------------------------------------------------- +Mon Oct 18 16:54:57 CEST 2010 - trenn@suse.de + +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf + +------------------------------------------------------------------- +Fri Oct 15 23:06:53 CEST 2010 - jslaby@suse.cz + +- Update to 2.6.36-rc8. +- commit 0c0e67c + +------------------------------------------------------------------- +Fri Oct 15 22:49:53 CEST 2010 - jslaby@suse.cz + +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f + +------------------------------------------------------------------- +Tue Oct 12 10:00:08 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 + +------------------------------------------------------------------- +Mon Oct 11 17:14:51 CEST 2010 - mmarek@suse.cz + +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 + +------------------------------------------------------------------- +Mon Oct 11 16:12:29 CEST 2010 - jbeulich@novell.com + +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 + +------------------------------------------------------------------- +Fri Oct 8 17:40:50 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc7. +- commit 82673e4 + +------------------------------------------------------------------- +Tue Oct 5 18:02:19 CEST 2010 - jbeulich@novell.com + +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa + +------------------------------------------------------------------- +Tue Oct 5 17:19:46 CEST 2010 - jeffm@suse.de + +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc + +------------------------------------------------------------------- +Tue Oct 5 16:58:20 CEST 2010 - jeffm@suse.de + +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 + +------------------------------------------------------------------- +Mon Oct 4 16:57:34 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 + +------------------------------------------------------------------- +Fri Sep 24 13:45:31 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 + +------------------------------------------------------------------- +Fri Sep 24 13:23:13 CEST 2010 - trenn@suse.de + +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 + +------------------------------------------------------------------- +Fri Sep 24 13:14:36 CEST 2010 - trenn@suse.de + +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 + +------------------------------------------------------------------- +Fri Sep 24 11:08:57 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f + +------------------------------------------------------------------- +Fri Sep 24 10:38:36 CEST 2010 - jbeulich@novell.com + +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 + +------------------------------------------------------------------- +Fri Sep 24 09:54:16 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 + +------------------------------------------------------------------- +Thu Sep 23 23:33:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 + +------------------------------------------------------------------- +Thu Sep 23 19:16:00 CEST 2010 - jeffm@suse.de + +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b + +------------------------------------------------------------------- +Tue Sep 21 21:41:15 CEST 2010 - jeffm@suse.de + +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf + +------------------------------------------------------------------- +Tue Sep 21 14:15:34 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 + +------------------------------------------------------------------- +Tue Sep 21 13:59:10 CEST 2010 - jeffm@suse.de + +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 + +------------------------------------------------------------------- +Mon Sep 20 19:57:39 CEST 2010 - jeffm@suse.de + +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f + +------------------------------------------------------------------- +Mon Sep 20 16:03:14 CEST 2010 - sjayaraman@suse.de + +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b + +------------------------------------------------------------------- +Mon Sep 20 15:25:41 CEST 2010 - jeffm@suse.de + +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 + +------------------------------------------------------------------- +Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com + +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 + +------------------------------------------------------------------- +Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de + +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 + +------------------------------------------------------------------- +Thu Sep 16 20:58:28 CEST 2010 - jeffm@suse.de + +- x86-64, compat: Test %rax for the syscall number, not %eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 + +------------------------------------------------------------------- +Thu Sep 16 20:37:08 CEST 2010 - jeffm@suse.de + +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac + +------------------------------------------------------------------- +Wed Sep 15 20:17:27 CEST 2010 - jeffm@suse.com + +- Remove reference to unused patch. +- commit a3abfe2 + +------------------------------------------------------------------- +Wed Sep 15 19:32:01 CEST 2010 - jeffm@suse.de + +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 + +------------------------------------------------------------------- +Wed Sep 15 19:23:44 CEST 2010 - jeffm@suse.de + +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 + +------------------------------------------------------------------- +Wed Sep 15 19:07:53 CEST 2010 - jeffm@suse.de + +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 + +------------------------------------------------------------------- +Wed Sep 15 17:28:18 CEST 2010 - tiwai@suse.de + +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 + +------------------------------------------------------------------- +Tue Sep 14 08:13:57 CEST 2010 - jslaby@suse.cz + +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 + +------------------------------------------------------------------- +Mon Sep 13 14:35:10 CEST 2010 - oneukum@suse.de + +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c + +------------------------------------------------------------------- +Mon Sep 13 10:14:50 CEST 2010 - jdelvare@suse.de + +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd + +------------------------------------------------------------------- +Fri Sep 3 18:57:13 CEST 2010 - jeffm@suse.de + +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e + +------------------------------------------------------------------- +Fri Sep 3 16:38:10 CEST 2010 - jeffm@suse.com + +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f + +------------------------------------------------------------------- +Wed Sep 1 12:04:59 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 + +------------------------------------------------------------------- +Wed Sep 1 11:40:45 CEST 2010 - jbeulich@novell.com + +- fix unwind annotations. +- commit 5aa6daf + +------------------------------------------------------------------- +Wed Sep 1 00:53:49 CEST 2010 - jeffm@suse.com + +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 + +------------------------------------------------------------------- +Tue Aug 31 14:02:33 CEST 2010 - jdelvare@suse.de + +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 + +------------------------------------------------------------------- +Mon Aug 30 17:24:07 CEST 2010 - jeffm@suse.de + +- Refresh vanilla configs. +- commit 26a681e + +------------------------------------------------------------------- +Mon Aug 30 17:03:30 CEST 2010 - jeffm@suse.de + +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d + +------------------------------------------------------------------- +Sat Aug 28 13:09:20 CEST 2010 - jslaby@suse.cz + +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb + +------------------------------------------------------------------- +Fri Aug 27 16:26:16 CEST 2010 - jeffm@suse.com + +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c + +------------------------------------------------------------------- +Thu Aug 26 16:55:14 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 + +------------------------------------------------------------------- +Thu Aug 26 16:54:46 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 + +------------------------------------------------------------------- +Tue Aug 24 20:06:39 CEST 2010 - jeffm@suse.com + +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 + +------------------------------------------------------------------- +Tue Aug 24 18:31:36 CEST 2010 - jeffm@suse.de + +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 + +------------------------------------------------------------------- +Tue Aug 24 18:07:05 CEST 2010 - jeffm@suse.de + +- s390: Fix prototype for execve. +- commit b448268 + +------------------------------------------------------------------- +Tue Aug 24 17:47:48 CEST 2010 - jeffm@suse.de + +- spectra: depend on X86_MRST. +- commit 1e3fb89 + +------------------------------------------------------------------- +Tue Aug 24 17:16:11 CEST 2010 - jeffm@suse.de + +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 + +------------------------------------------------------------------- +Tue Aug 24 17:11:08 CEST 2010 - jeffm@suse.de + +- caif: Use asm/unaligned.h. +- commit 92c07c2 + +------------------------------------------------------------------- +Tue Aug 24 17:07:45 CEST 2010 - jeffm@suse.de + +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 + +------------------------------------------------------------------- +Tue Aug 24 16:47:58 CEST 2010 - mmarek@suse.cz + +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 + +------------------------------------------------------------------- +Tue Aug 24 16:18:58 CEST 2010 - jeffm@suse.com + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e + +------------------------------------------------------------------- +Tue Aug 24 16:16:55 CEST 2010 - jeffm@suse.com + +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 + +------------------------------------------------------------------- +Tue Aug 24 15:43:02 CEST 2010 - jeffm@suse.com + +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 + +------------------------------------------------------------------- +Mon Aug 23 21:06:58 CEST 2010 - jeffm@suse.de + +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 + +------------------------------------------------------------------- +Mon Aug 23 20:25:52 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 + +------------------------------------------------------------------- +Mon Aug 23 20:14:03 CEST 2010 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 + +------------------------------------------------------------------- +Mon Aug 23 19:57:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec + +------------------------------------------------------------------- +Mon Aug 23 17:57:06 CEST 2010 - jeffm@suse.de + +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a + +------------------------------------------------------------------- +Mon Aug 23 16:59:08 CEST 2010 - jeffm@suse.de + +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 + +------------------------------------------------------------------- +Wed Aug 18 19:44:13 CEST 2010 - jeffm@suse.de + +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 + +------------------------------------------------------------------- +Mon Aug 16 10:22:09 CEST 2010 - tiwai@suse.de + +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 + +------------------------------------------------------------------- +Fri Aug 13 02:39:29 CEST 2010 - jeffm@suse.com + +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e + +------------------------------------------------------------------- +Thu Aug 12 20:42:29 CEST 2010 - gregkh@suse.de + +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 + +------------------------------------------------------------------- +Thu Aug 12 20:39:52 CEST 2010 - gregkh@suse.de + +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 + +------------------------------------------------------------------- +Thu Aug 12 20:38:21 CEST 2010 - gregkh@suse.de + +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 + +------------------------------------------------------------------- +Thu Aug 12 19:24:58 CEST 2010 - jeffm@suse.com + +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 + +------------------------------------------------------------------- +Thu Aug 12 08:54:30 CEST 2010 - jslaby@suse.cz + +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 + +------------------------------------------------------------------- +Wed Aug 11 23:34:07 CEST 2010 - jack@suse.cz + +- novfs: Lindent novfs sources. +- commit 361594a + +------------------------------------------------------------------- +Wed Aug 11 06:08:17 CEST 2010 - neilb@suse.de + +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 + +------------------------------------------------------------------- +Wed Aug 11 05:42:36 CEST 2010 - neilb@suse.de + +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 + +------------------------------------------------------------------- +Tue Aug 10 19:19:37 CEST 2010 - tiwai@suse.de + +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 + +------------------------------------------------------------------- +Mon Aug 9 16:28:00 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b + +------------------------------------------------------------------- +Fri Aug 6 17:03:09 CEST 2010 - jeffm@suse.de + +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 + +------------------------------------------------------------------- +Fri Aug 6 16:09:39 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-final and refresh patch set. +- commit a40327f + +------------------------------------------------------------------- +Mon Aug 2 14:39:22 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff + +------------------------------------------------------------------- +Fri Jul 23 20:09:25 CEST 2010 - jack@suse.cz + +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 + +------------------------------------------------------------------- +Fri Jul 23 18:25:37 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc6. +- commit 643df99 + +------------------------------------------------------------------- +Fri Jul 23 12:15:59 CEST 2010 - jack@suse.cz + +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 + +------------------------------------------------------------------- +Wed Jul 21 11:07:10 CEST 2010 - jack@suse.cz + +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f + +------------------------------------------------------------------- +Wed Jul 21 10:47:22 CEST 2010 - jack@suse.cz + +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 + +------------------------------------------------------------------- +Tue Jul 20 14:01:26 CEST 2010 - jack@suse.cz + +- novfs: backing device info initialization (bnc#623472). +- commit b576dae + +------------------------------------------------------------------- +Tue Jul 20 12:55:33 CEST 2010 - mmarek@suse.cz + +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 + +------------------------------------------------------------------- +Tue Jul 20 11:22:47 CEST 2010 - jblunck@suse.de + +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e + +------------------------------------------------------------------- +Mon Jul 19 17:23:30 CEST 2010 - mmarek@suse.cz + +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd + +------------------------------------------------------------------- +Thu Jul 15 11:47:45 CEST 2010 - bphilips@suse.de + +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST + +------------------------------------------------------------------- +Wed Jul 14 18:39:08 CEST 2010 - trenn@suse.de + +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). + +------------------------------------------------------------------- +Wed Jul 14 16:21:46 CEST 2010 - bphilips@suse.de + +- Update -desktop config files to enable CGROUPS for systemd + +------------------------------------------------------------------- +Wed Jul 14 14:04:36 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc5. + - Eliminated 5 patches. + +------------------------------------------------------------------- +Tue Jul 13 14:39:51 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). + +------------------------------------------------------------------- +Wed Jul 7 16:53:17 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc4. + +------------------------------------------------------------------- +Wed Jul 7 16:45:02 CEST 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. + +------------------------------------------------------------------- +Wed Jul 7 15:57:27 CEST 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Jul 7 12:14:43 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. + +------------------------------------------------------------------- +Wed Jul 7 10:37:59 CEST 2010 - mmarek@suse.cz + +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. + +------------------------------------------------------------------- +Wed Jul 7 00:27:53 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc4. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Jul 2 17:21:45 CEST 2010 - jeffm@suse.de + +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). + +------------------------------------------------------------------- +Fri Jul 2 11:27:54 CEST 2010 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. + +------------------------------------------------------------------- +Fri Jul 2 10:54:39 CEST 2010 - trenn@suse.de + +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). + +------------------------------------------------------------------- +Fri Jul 2 10:42:19 CEST 2010 - trenn@suse.de + +Mainline goes another way (bug #476509). +Also there is a problem with this patch, breaking dynamic debugging +(bnc#619416) -> just remove it, there will show up something else +mainline. + +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. + +------------------------------------------------------------------- +Thu Jul 1 20:19:51 CEST 2010 - jeffm@suse.de + +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). + +------------------------------------------------------------------- +Thu Jul 1 09:09:17 CEST 2010 - jdelvare@suse.de + +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). + +------------------------------------------------------------------- +Thu Jul 1 01:02:25 CEST 2010 - bphilips@suse.de + +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. + +------------------------------------------------------------------- +Wed Jun 30 20:20:58 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. + +------------------------------------------------------------------- +Tue Jun 29 02:38:57 CEST 2010 - nfbrown@suse.de + +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). + +------------------------------------------------------------------- +Mon Jun 28 22:19:17 CEST 2010 - mmarek@suse.cz + +- rpm/find-provides: Add base symsets to the main subpackage. + +------------------------------------------------------------------- +Fri Jun 25 17:14:03 CEST 2010 - jeffm@suse.de + +- Update config files for sparc64/net to remove unnecessary options. + +------------------------------------------------------------------- +Fri Jun 25 15:41:20 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Fri Jun 25 08:52:45 CEST 2010 - jbeulich@novell.com + +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. + +------------------------------------------------------------------- +Fri Jun 25 08:46:24 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Thu Jun 24 21:02:48 CEST 2010 - agruen@suse.de + +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. + +------------------------------------------------------------------- +Thu Jun 24 20:33:23 CEST 2010 - jeffm@suse.de + +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). + +------------------------------------------------------------------- +Thu Jun 24 16:58:40 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). + +------------------------------------------------------------------- +Thu Jun 24 16:38:14 CEST 2010 - jeffm@suse.de + +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). + +------------------------------------------------------------------- +Thu Jun 24 11:30:08 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 11:20:34 CEST 2010 - jdelvare@suse.de + +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). + +------------------------------------------------------------------- +Thu Jun 24 00:05:06 CEST 2010 - jeffm@suse.de + +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. + +------------------------------------------------------------------- +Wed Jun 23 17:21:41 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fixed typo. + +------------------------------------------------------------------- +Tue Jun 22 13:41:45 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). + +------------------------------------------------------------------- +Tue Jun 22 13:38:16 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Tue Jun 22 13:17:40 CEST 2010 - mmarek@suse.cz + +- rpm/config.sh: Build against openSUSE:11.3. + +------------------------------------------------------------------- +Tue Jun 22 12:19:33 CEST 2010 - knikanth@suse.de + +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. + +------------------------------------------------------------------- +Mon Jun 21 18:45:29 CEST 2010 - jeffm@suse.de + +- Resync v2.6.35 with master. + +------------------------------------------------------------------- +Mon Jun 21 18:34:42 CEST 2010 - jeffm@suse.de + +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. + +------------------------------------------------------------------- +Mon Jun 21 14:53:16 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). + +------------------------------------------------------------------- +Mon Jun 21 01:27:59 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. + +------------------------------------------------------------------- +Mon Jun 21 01:25:19 CEST 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. + +------------------------------------------------------------------- +Fri Jun 18 15:54:41 CEST 2010 - jbeulich@novell.com + +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jun 17 11:54:01 CEST 2010 - teheo@suse.de + +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). + +------------------------------------------------------------------- +Wed Jun 16 20:01:01 CEST 2010 - jeffm@suse.de + +- Update to 2.6.35-rc3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Jun 14 13:47:57 CEST 2010 - jslaby@suse.de + +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). + +------------------------------------------------------------------- +Wed Jun 9 22:01:21 CEST 2010 - jeffm@suse.de + +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. + +------------------------------------------------------------------- +Tue Jun 8 20:32:43 CEST 2010 - jeffm@suse.de + +- patches.trace/utrace-core: Workaround missing kref_set(). + +------------------------------------------------------------------- +Tue Jun 8 20:20:27 CEST 2010 - jeffm@suse.de + +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. + +------------------------------------------------------------------- +Tue Jun 8 20:17:40 CEST 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. + +------------------------------------------------------------------- +Tue Jun 8 19:46:30 CEST 2010 - jeffm@suse.de + +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jun 8 17:11:54 CEST 2010 - jeffm@suse.com + +- supported.conf: Updated dependencies for 2.6.35 + +------------------------------------------------------------------- +Mon Jun 7 17:55:56 CEST 2010 - jeffm@suse.com + +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". + +------------------------------------------------------------------- +Mon Jun 7 17:06:01 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc2. + +------------------------------------------------------------------- +Thu Jun 3 20:28:12 CEST 2010 - jeffm@suse.de + +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. + +------------------------------------------------------------------- +Wed Jun 2 18:28:30 CEST 2010 - bphilips@suse.de + +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). + +------------------------------------------------------------------- +Wed Jun 2 10:41:06 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: More -rt fixes. + +------------------------------------------------------------------- +Tue Jun 1 23:04:32 CEST 2010 - jeffm@suse.com + +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Tue Jun 1 21:48:10 CEST 2010 - bphilips@suse.de + +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). + +------------------------------------------------------------------- +Tue Jun 1 15:16:08 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). + +------------------------------------------------------------------- +Tue Jun 1 15:15:14 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: pcre-tools is not needed. + +------------------------------------------------------------------- +Mon May 31 12:48:40 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix for -rt. + +------------------------------------------------------------------- +Wed May 26 16:43:19 CEST 2010 - gregkh@suse.de + +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. + +------------------------------------------------------------------- +Tue May 25 20:42:35 CEST 2010 - jeffm@suse.de + +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. + +------------------------------------------------------------------- +Tue May 25 19:50:59 CEST 2010 - jeffm@suse.com + +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). + +------------------------------------------------------------------- +Tue May 25 12:20:47 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Mon May 24 16:34:08 CEST 2010 - jbenc@suse.cz + +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. + +------------------------------------------------------------------- +Sun May 23 10:37:41 CEST 2010 - teheo@suse.de + +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). + +------------------------------------------------------------------- +Sat May 22 07:43:34 CEST 2010 - trenn@suse.de + +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Sat May 22 07:13:47 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). + +------------------------------------------------------------------- +Sat May 22 07:11:40 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). + +------------------------------------------------------------------- +Thu May 20 21:31:10 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. + +------------------------------------------------------------------- +Mon May 17 17:30:17 CEST 2010 - jeffm@suse.com + +- patches.fixes/kvm-ioapic.patch: Refresh. + +------------------------------------------------------------------- +Mon May 17 16:19:09 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-final. + +------------------------------------------------------------------- +Wed May 12 15:15:24 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. + +------------------------------------------------------------------- +Wed May 12 10:43:19 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc7 and c/s 1017. + +------------------------------------------------------------------- +Tue May 11 20:40:38 CEST 2010 - jeffm@suse.com + +- Update config files for vanilla. + +------------------------------------------------------------------- +Tue May 11 20:02:24 CEST 2010 - jeffm@suse.com + +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Sun May 2 19:55:13 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc6. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Sun May 2 17:14:46 CEST 2010 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). + +------------------------------------------------------------------- +Fri Apr 30 10:30:26 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). + +------------------------------------------------------------------- +Thu Apr 29 15:13:28 CEST 2010 - jbeulich@novell.com + +- Update -ec2 config files (X86_MSR=m again). + +------------------------------------------------------------------- +Thu Apr 29 15:09:43 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. + +------------------------------------------------------------------- +Thu Apr 29 13:11:21 CEST 2010 - knikanth@suse.de + +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. + +------------------------------------------------------------------- +Thu Apr 29 01:03:00 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Apr 28 14:10:41 CEST 2010 - trenn@suse.de + +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). + +------------------------------------------------------------------- +Wed Apr 28 11:47:11 CEST 2010 - mmarek@suse.cz + +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. + +------------------------------------------------------------------- +Wed Apr 28 10:39:04 CEST 2010 - trenn@suse.de + +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). + +------------------------------------------------------------------- +Wed Apr 28 10:34:23 CEST 2010 - trenn@suse.de + +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. + +------------------------------------------------------------------- +Mon Apr 26 15:45:19 CEST 2010 - jeffm@suse.com + +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) + +------------------------------------------------------------------- +Mon Apr 26 03:08:10 CEST 2010 - jeffm@suse.com + +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. + +------------------------------------------------------------------- +Fri Apr 23 17:08:10 CEST 2010 - trenn@suse.de + +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). + +------------------------------------------------------------------- +Fri Apr 23 16:54:33 CEST 2010 - trenn@suse.de + +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). + +------------------------------------------------------------------- +Thu Apr 22 21:18:11 CEST 2010 - jeffm@suse.com + +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c + +------------------------------------------------------------------- +Thu Apr 22 09:47:57 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-*.spec.in: Provide %name = %version-%source_rel in + all spec files (bnc#598453). + +------------------------------------------------------------------- +Thu Apr 22 09:32:19 CEST 2010 - tiwai@suse.de + +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m + +------------------------------------------------------------------- +Thu Apr 22 08:24:58 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 21 16:44:28 CEST 2010 - tiwai@suse.de + +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. + +------------------------------------------------------------------- +Wed Apr 21 03:01:21 CEST 2010 - jeffm@suse.com + +- Update to 2.6.34-rc5. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Apr 20 00:25:54 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). + +------------------------------------------------------------------- +Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de + +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). + +------------------------------------------------------------------- +Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. + +------------------------------------------------------------------- +Thu Apr 15 02:17:03 CEST 2010 - teheo@suse.de + +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). + +------------------------------------------------------------------- +Wed Apr 14 22:24:22 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Tue Apr 13 13:02:28 CEST 2010 - mmarek@suse.cz + +- Update vanilla config files. + +------------------------------------------------------------------- +Tue Apr 13 12:39:30 CEST 2010 - tiwai@suse.de + +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). + +------------------------------------------------------------------- +Tue Apr 13 11:43:30 CEST 2010 - agraf@suse.de + +- Update config files to disable KVM on PPC also for ppc/ppc64. + +------------------------------------------------------------------- +Tue Apr 13 07:52:50 CEST 2010 - teheo@suse.de + +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. + +------------------------------------------------------------------- +Mon Apr 12 21:01:14 CEST 2010 - jslaby@suse.de + +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). + +------------------------------------------------------------------- +Mon Apr 12 18:43:55 CEST 2010 - jack@suse.de + +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). + +------------------------------------------------------------------- +Mon Apr 12 12:55:42 CEST 2010 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). + +------------------------------------------------------------------- +Fri Apr 9 18:24:38 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. + +------------------------------------------------------------------- +Fri Apr 9 10:29:45 CEST 2010 - knikanth@suse.de + +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). + +------------------------------------------------------------------- +Fri Apr 9 00:24:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). + +------------------------------------------------------------------- +Thu Apr 8 16:01:25 CEST 2010 - agraf@suse.de + +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. + +------------------------------------------------------------------- +Wed Apr 7 12:41:32 UTC 2010 - jengelh@medozas.de + +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. + +------------------------------------------------------------------- +Wed Mar 31 17:12:43 CEST 2010 - jeffm@suse.de + +- Updated sparc64 config. + +------------------------------------------------------------------- +Wed Mar 31 16:46:56 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc3. + +------------------------------------------------------------------- +Wed Mar 31 15:58:27 CEST 2010 - mmarek@suse.cz + +- doc/README.SUSE: Update some obsolete information. + +------------------------------------------------------------------- +Wed Mar 31 14:29:46 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-docs.spec.in: Fix path to kernel source. + +------------------------------------------------------------------- +Wed Mar 31 14:18:52 CEST 2010 - mmarek@suse.cz + +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. + +------------------------------------------------------------------- +Wed Mar 31 14:03:10 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. + +------------------------------------------------------------------- +Wed Mar 31 13:45:33 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. + +------------------------------------------------------------------- +Tue Mar 30 19:18:01 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). + +------------------------------------------------------------------- +Tue Mar 30 17:03:54 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %setup lines automatically from the + preamble. + +------------------------------------------------------------------- +Tue Mar 30 14:36:25 CEST 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Provide $pkg = %version-%source_rel + in kernel-devel and kernel-source-vanilla. + +------------------------------------------------------------------- +Mon Mar 29 21:26:55 CEST 2010 - jeffm@suse.de + +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). + +------------------------------------------------------------------- +Mon Mar 29 19:57:49 CEST 2010 - jeffm@suse.de + +- Disabled MAX63XX_WATCHDOG on s390. + +------------------------------------------------------------------- +Mon Mar 29 19:31:46 CEST 2010 - jeffm@suse.de + +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. + +------------------------------------------------------------------- +Mon Mar 29 18:53:20 CEST 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). + +------------------------------------------------------------------- +Fri Mar 26 18:27:41 CET 2010 - jkosina@suse.cz + +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). + +------------------------------------------------------------------- +Thu Mar 25 23:01:11 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). + +------------------------------------------------------------------- +Thu Mar 25 17:48:45 CET 2010 - jeffm@suse.de + +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). + +------------------------------------------------------------------- +Tue Mar 23 16:22:37 CET 2010 - jeffm@suse.de + +- patches.drivers/lpfc-add-raywire-id: Delete. + +------------------------------------------------------------------- +Tue Mar 23 16:17:52 CET 2010 - jeffm@suse.de + +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. + +------------------------------------------------------------------- +Tue Mar 23 16:00:31 CET 2010 - jeffm@suse.de + +- patches.fixes/do_anonymous_page-race: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:50:39 CET 2010 - jeffm@suse.de + +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. + +------------------------------------------------------------------- +Tue Mar 23 15:44:47 CET 2010 - jeffm@suse.de + +- patches.suse/apm_setup_UP.diff: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:37:10 CET 2010 - jeffm@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:17:00 CET 2010 - jeffm@suse.de + +- patches.fixes/dlm-enable-debug.patch: Delete. + +------------------------------------------------------------------- +Mon Mar 22 18:16:39 CET 2010 - jeffm@suse.de + +- patches.fixes/ds1682-build-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:55:43 CET 2010 - jeffm@suse.de + +- patches.suse/kvm-as-kmp: Delete. + +------------------------------------------------------------------- +Mon Mar 22 17:32:50 CET 2010 - jeffm@suse.de + +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. + +------------------------------------------------------------------- +Sun Mar 21 23:30:01 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 19 17:33:27 CET 2010 - jbohac@suse.cz + +- set CONFIG_IPV6=y for all flavours (bnc#561611) + +------------------------------------------------------------------- +Thu Mar 18 18:57:20 CET 2010 - jeffm@suse.de + +- Refreshed patch series. + +------------------------------------------------------------------- +Wed Mar 17 16:51:34 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. + +------------------------------------------------------------------- +Tue Mar 16 16:09:25 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. + +------------------------------------------------------------------- +Tue Mar 16 16:03:45 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. + +------------------------------------------------------------------- +Tue Mar 16 14:14:05 CET 2010 - trenn@suse.de + +- rpm/kernel-binary.spec.in: + bnc#587578 + +------------------------------------------------------------------- +Thu Mar 11 16:39:36 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Thu Mar 11 11:47:14 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. + +------------------------------------------------------------------- +Wed Mar 10 22:14:03 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. + +------------------------------------------------------------------- +Wed Mar 10 22:11:16 CET 2010 - jeffm@suse.de + +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. + +------------------------------------------------------------------- +Wed Mar 10 22:06:12 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. + +------------------------------------------------------------------- +Wed Mar 10 22:03:49 CET 2010 - jeffm@suse.de + +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. + +------------------------------------------------------------------- +Wed Mar 10 21:07:27 CET 2010 - jeffm@suse.de + +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. + +------------------------------------------------------------------- +Wed Mar 10 20:26:13 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. + +------------------------------------------------------------------- +Wed Mar 10 20:22:20 CET 2010 - jeffm@suse.de + +- Update config files for vanilla. + +------------------------------------------------------------------- +Wed Mar 10 18:48:00 CET 2010 - jdelvare@suse.de + +- supported.conf: Add hwmon/ams back. + +------------------------------------------------------------------- +Wed Mar 10 14:52:16 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. + +------------------------------------------------------------------- +Wed Mar 10 13:09:33 CET 2010 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. + +------------------------------------------------------------------- +Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de + +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. + +------------------------------------------------------------------- +Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. + +------------------------------------------------------------------- +Tue Mar 9 13:38:42 CET 2010 - mmarek@suse.cz + +- rpm/find-provides: Do not generate ksym(...) provides. + +------------------------------------------------------------------- +Tue Mar 9 11:11:55 CET 2010 - mmarek@suse.cz + +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). + +------------------------------------------------------------------- +Fri Mar 5 10:48:50 CET 2010 - knikanth@suse.de + +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). + +------------------------------------------------------------------- +Fri Mar 5 02:02:01 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building + +------------------------------------------------------------------- +Fri Mar 5 02:00:50 UTC 2010 - jengelh@medozas.de + +- add configs/sparc64/default + +------------------------------------------------------------------- +Wed Mar 3 19:38:43 CET 2010 - tonyj@suse.de + +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit + +------------------------------------------------------------------- +Wed Mar 3 14:43:27 CET 2010 - tonyj@suse.de + +- remove perfmon2 patches + +------------------------------------------------------------------- +Wed Mar 3 14:40:46 CET 2010 - tonyj@suse.de + +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Tue Mar 2 17:26:25 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. + +------------------------------------------------------------------- +Tue Mar 2 04:01:27 CET 2010 - nfbrown@suse.de + +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). + +------------------------------------------------------------------- +Thu Feb 25 20:06:05 CET 2010 - jeffm@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. + +------------------------------------------------------------------- +Thu Feb 25 16:38:31 CET 2010 - mmarek@suse.cz + +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. + +------------------------------------------------------------------- +Thu Feb 25 08:39:15 CET 2010 - teheo@suse.de + +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. + +------------------------------------------------------------------- +Thu Feb 25 08:13:40 CET 2010 - teheo@suse.de + +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. + +------------------------------------------------------------------- +Thu Feb 25 07:25:49 CET 2010 - teheo@suse.de + +- Drop CONFIG_IDE from all configs. + +------------------------------------------------------------------- +Thu Feb 25 06:04:24 CET 2010 - jeffm@suse.com + +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. + +------------------------------------------------------------------- +Wed Feb 24 21:00:52 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Feb 24 20:02:26 CET 2010 - jeffm@suse.de + +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). + +------------------------------------------------------------------- +Wed Feb 24 14:46:28 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). + +------------------------------------------------------------------- +Wed Feb 24 10:54:56 UTC 2010 - jengelh@medozas.de + +- rpm/kernel-source.spec.in: use macros in a few more places + +------------------------------------------------------------------- +Tue Feb 23 00:34:32 CET 2010 - jack@suse.de + +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). + +------------------------------------------------------------------- +Sat Feb 20 22:31:31 UTC 2010 - jengelh@medozas.de + +- use standard short options in tar commands + +------------------------------------------------------------------- +Wed Feb 17 04:07:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). + +------------------------------------------------------------------- +Tue Feb 16 21:21:22 CET 2010 - jeffm@suse.com + +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). + +------------------------------------------------------------------- +Tue Feb 16 18:10:01 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Feb 15 19:15:43 CET 2010 - rgoldwyn@suse.de + +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). + +------------------------------------------------------------------- +Fri Feb 12 17:36:05 CET 2010 - trenn@suse.de + +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +------------------------------------------------------------------- +Fri Feb 12 17:10:47 CET 2010 - jeffm@suse.com + +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). + +------------------------------------------------------------------- +Fri Feb 12 16:57:20 CET 2010 - trenn@suse.de + +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). + +------------------------------------------------------------------- +Fri Feb 12 10:32:54 CET 2010 - jdelvare@suse.de + +- supported.conf: saa7111 and saa7114 are gone. + +------------------------------------------------------------------- +Wed Feb 10 16:37:00 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). + +------------------------------------------------------------------- +Wed Feb 10 02:13:27 CET 2010 - jeffm@suse.com + +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). + +------------------------------------------------------------------- +Wed Feb 10 00:29:46 CET 2010 - gregkh@suse.de + +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. + +------------------------------------------------------------------- +Tue Feb 9 22:55:21 CET 2010 - jeffm@suse.com + +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). + +------------------------------------------------------------------- +Tue Feb 9 17:02:26 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Tue Feb 9 10:09:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). + +------------------------------------------------------------------- +Mon Feb 8 15:49:01 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). + +------------------------------------------------------------------- +Fri Feb 5 18:10:37 CET 2010 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). + +------------------------------------------------------------------- +Fri Feb 5 16:12:12 CET 2010 - duwe@suse.de + +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) + +------------------------------------------------------------------- +Fri Feb 5 16:07:34 CET 2010 - duwe@suse.de + +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). + +------------------------------------------------------------------- +Fri Feb 5 11:10:01 CET 2010 - coly.li@suse.de + +- disable patches.suse/64bytes_lvb_len.diff in series.conf + +------------------------------------------------------------------- +Thu Feb 4 15:17:01 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). + +------------------------------------------------------------------- +Thu Feb 4 13:23:57 CET 2010 - knikanth@suse.de + +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). + +------------------------------------------------------------------- +Thu Feb 4 12:17:25 CET 2010 - npiggin@suse.de + +- Disable patches.suse/files-slab-rcu.patch. + +------------------------------------------------------------------- +Thu Feb 4 11:29:58 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). + +------------------------------------------------------------------- +Thu Feb 4 09:46:35 CET 2010 - tiwai@suse.de + +- supported.conf: mark snd-wss-lib unsupported + +------------------------------------------------------------------- +Thu Feb 4 09:45:34 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). + +------------------------------------------------------------------- +Wed Feb 3 19:17:01 CET 2010 - jbohac@suse.cz + +- supported.conf: marked em_cmp supported (bnc#568130) + +------------------------------------------------------------------- +Wed Feb 3 14:57:19 CET 2010 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. + +------------------------------------------------------------------- +Wed Feb 3 13:06:15 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. + +------------------------------------------------------------------- +Tue Feb 2 15:59:38 CET 2010 - jkosina@suse.cz + +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). + +------------------------------------------------------------------- +Sat Jan 30 21:51:35 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc6. + - Eliminated 12 patches. + +------------------------------------------------------------------- +Sat Jan 30 21:30:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. + +------------------------------------------------------------------- +Sat Jan 30 09:05:13 CET 2010 - jslaby@suse.de + +- patches.suse/kdb-common: Fix hid crash (bnc#570591) + +------------------------------------------------------------------- +Fri Jan 29 12:11:55 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). + +------------------------------------------------------------------- +Fri Jan 29 11:14:39 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. + +------------------------------------------------------------------- +Fri Jan 29 10:39:59 CET 2010 - jbenc@suse.cz + +- Update config files: fixed vanilla configs. + +------------------------------------------------------------------- +Thu Jan 28 19:27:54 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). + +------------------------------------------------------------------- +Thu Jan 28 16:56:02 CET 2010 - jbeulich@novell.com + +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. + +------------------------------------------------------------------- +Thu Jan 28 16:28:01 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Thu Jan 28 14:50:18 CET 2010 - jbenc@suse.cz + +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. + +------------------------------------------------------------------- +Thu Jan 28 14:37:22 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. + +------------------------------------------------------------------- +Thu Jan 28 11:17:01 CET 2010 - mmarek@suse.cz + +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. + +------------------------------------------------------------------- +Wed Jan 27 20:24:43 CET 2010 - jeffm@suse.de + +- Deleted 28 unused patches. + +------------------------------------------------------------------- +Wed Jan 27 15:56:48 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +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 16:41:36 CET 2009 - mmarek@suse.cz + +- rpm/kabi.pl: Do not print harmless kabi changes by default. + +------------------------------------------------------------------- +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 + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:17:46 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) + +------------------------------------------------------------------- +Fri Dec 4 00:16:20 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) + +------------------------------------------------------------------- +Thu Dec 3 20:53:57 CET 2009 - jeffm@suse.com + +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) + +------------------------------------------------------------------- +Thu Dec 3 20:13:09 CET 2009 - jeffm@suse.com + +- Cleanup config files. + +------------------------------------------------------------------- +Thu Dec 3 19:34:08 CET 2009 - bphilips@suse.de + +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. + +------------------------------------------------------------------- +Thu Dec 3 19:06:23 CET 2009 - duwe@suse.de + +- back out cpuidle feature that is still unconsistent. + +------------------------------------------------------------------- +Thu Dec 3 18:40:03 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 18:21:13 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. + +------------------------------------------------------------------- +Thu Dec 3 18:04:51 CET 2009 - mfasheh@suse.com + +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). + +------------------------------------------------------------------- +Thu Dec 3 17:19:44 CET 2009 - duwe@suse.de + +- Update config files for 2.6.32 (again). + +------------------------------------------------------------------- +Thu Dec 3 17:00:12 CET 2009 - duwe@suse.de + +- Update config files for cpuidle. + +------------------------------------------------------------------- +Thu Dec 3 16:45:06 CET 2009 - tiwai@suse.de + +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). + +------------------------------------------------------------------- +Thu Dec 3 16:40:59 CET 2009 - duwe@suse.de + +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final + +------------------------------------------------------------------- +Thu Dec 3 16:33:28 CET 2009 - duwe@suse.de + +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. + +------------------------------------------------------------------- +Thu Dec 3 15:59:01 CET 2009 - jeffm@suse.com + +- Updated to 2.6.32-final. + - 2 patches eliminated. + +------------------------------------------------------------------- +Thu Dec 3 15:19:01 CET 2009 - hare@suse.de + +- Update config files: Enable Hibernation for zSeries. + +------------------------------------------------------------------- +Thu Dec 3 14:42:32 CET 2009 - mmarek@suse.cz + +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. + +------------------------------------------------------------------- +Thu Dec 3 13:54:17 CET 2009 - mmarek@suse.cz + +- rpm/split-modules: Print which supported modules need unsupported + modules. + +------------------------------------------------------------------- +Thu Dec 3 12:56:43 CET 2009 - jdelvare@suse.de + +- supported.conf: support lis3lv02d, hp_accel needs it. + +------------------------------------------------------------------- +Thu Dec 3 12:03:20 CET 2009 - jdelvare@suse.de + +- supported.conf: hp_accel is supported (FATE #306448). + +------------------------------------------------------------------- +Thu Dec 3 11:54:14 CET 2009 - jdelvare@suse.de + +- supported.conf: remove wm831x drivers, we no longer ship them. + +------------------------------------------------------------------- +Thu Dec 3 11:32:03 CET 2009 - jdelvare@suse.de + +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. + +------------------------------------------------------------------- +Thu Dec 3 11:30:08 CET 2009 - mmarek@suse.cz + +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. + +------------------------------------------------------------------- +Thu Dec 3 11:03:24 CET 2009 - mmarek@suse.cz + +- supported.conf: Fix up after commit bfea0bd. + +------------------------------------------------------------------- +Thu Dec 3 10:53:16 CET 2009 - jdelvare@suse.de + +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. + +------------------------------------------------------------------- +Thu Dec 3 10:26:09 CET 2009 - hare@suse.de + +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. + +------------------------------------------------------------------- +Thu Dec 3 09:48:04 CET 2009 - jdelvare@suse.de + +- Restore link from config/s390/vanilla to config/s390x/vanilla. + +------------------------------------------------------------------- +Thu Dec 3 09:10:46 CET 2009 - jbeulich@novell.com + +- supported.conf: Update Xen drivers. + +------------------------------------------------------------------- +Thu Dec 3 04:57:00 CET 2009 - tonyj@suse.de + +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch + +------------------------------------------------------------------- +Thu Dec 3 04:08:24 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi + +------------------------------------------------------------------- +Thu Dec 3 01:51:51 CET 2009 - gregkh@suse.de + +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader + +------------------------------------------------------------------- +Wed Dec 2 23:01:36 CET 2009 - jdelvare@suse.de + +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. + +------------------------------------------------------------------- +Wed Dec 2 22:49:01 CET 2009 - jdelvare@suse.de + +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. + +------------------------------------------------------------------- +Wed Dec 2 22:33:37 CET 2009 - jdelvare@suse.de + +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. + +------------------------------------------------------------------- +Wed Dec 2 22:28:16 CET 2009 - jdelvare@suse.de + +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. + +------------------------------------------------------------------- +Wed Dec 2 22:16:50 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. + +------------------------------------------------------------------- +Wed Dec 2 22:15:33 CET 2009 - mmarek@suse.cz + +- supported.conf: Add perfmon, hid and input modules. + +------------------------------------------------------------------- +Wed Dec 2 19:28:19 CET 2009 - tiwai@suse.de + +- Update config files: Fix vanilla configs + +------------------------------------------------------------------- +Wed Dec 2 19:14:09 CET 2009 - tiwai@suse.de + +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. + +------------------------------------------------------------------- +Wed Dec 2 18:13:11 CET 2009 - tiwai@suse.de + +- Updated the sound section of supported.conf + +------------------------------------------------------------------- +Wed Dec 2 17:38:02 CET 2009 - gregkh@suse.de + +- Update config files. disable USB OTG drivers that should not + have been enabled. + +------------------------------------------------------------------- +Wed Dec 2 17:24:33 CET 2009 - gregkh@suse.de + +- supported.conf: remove some usb drivers that were deleted or renamed. + +------------------------------------------------------------------- +Wed Dec 2 17:22:08 CET 2009 - gregkh@suse.de + +- supported.conf: update usb driver section + +------------------------------------------------------------------- +Wed Dec 2 16:29:38 CET 2009 - mmarek@suse.cz + +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. + +------------------------------------------------------------------- +Wed Dec 2 11:34:10 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). + +------------------------------------------------------------------- +Tue Dec 1 14:41:20 CET 2009 - tiwai@suse.de + +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). + +------------------------------------------------------------------- +Mon Nov 30 23:10:46 CET 2009 - jeffm@suse.com + +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). + +------------------------------------------------------------------- +Mon Nov 30 23:06:06 CET 2009 - jeffm@suse.com + +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). + +------------------------------------------------------------------- +Mon Nov 30 14:24:36 CET 2009 - teheo@suse.de + +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:06:38 CET 2009 - teheo@suse.de + +- needs_update: drop patches which are already included in 2.6.31 + vanilla. + +------------------------------------------------------------------- +Mon Nov 30 14:05:39 CET 2009 - teheo@suse.de + +Forward port two x86 patches from SLE11. + +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). + +------------------------------------------------------------------- +Mon Nov 30 13:41:27 CET 2009 - agraf@suse.de + +- Update config files: Enable KSM (FATE#306513) + +------------------------------------------------------------------- +Sat Nov 28 19:52:19 CET 2009 - gregkh@suse.de + +- needs_update: acpi dock patch was hmacht's, not mine + +------------------------------------------------------------------- +Sat Nov 28 19:50:18 CET 2009 - gregkh@suse.de + +- needs_update: sysfs debugging crash patch is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:49:08 CET 2009 - gregkh@suse.de + +- needs_update: jeffm merged novfs patches into the main novfs patch. + +------------------------------------------------------------------- +Sat Nov 28 19:48:20 CET 2009 - gregkh@suse.de + +- needs_update: qualcomm modem driver is upstream + +------------------------------------------------------------------- +Sat Nov 28 19:48:03 CET 2009 - gregkh@suse.de + +- needs_update: squashfs is now upstream + +------------------------------------------------------------------- +Sat Nov 28 19:47:27 CET 2009 - gregkh@suse.de + +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. + +------------------------------------------------------------------- +Sat Nov 28 19:46:46 CET 2009 - gregkh@suse.de + +- needs_update: remove staging driver entries, they are all upstream. + +------------------------------------------------------------------- +Sat Nov 28 19:46:05 CET 2009 - gregkh@suse.de + +- needs_update: remove hv driver entries, those are upstream now. + +------------------------------------------------------------------- +Sat Nov 28 19:45:20 CET 2009 - gregkh@suse.de + +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) + +------------------------------------------------------------------- +Sat Nov 28 10:39:15 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. + +------------------------------------------------------------------- +Fri Nov 27 15:16:56 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. + +------------------------------------------------------------------- +Fri Nov 27 15:12:17 CET 2009 - mmarek@suse.cz + +- supported.conf: mark cnic as supported (needed by bnx2i). + +------------------------------------------------------------------- +Fri Nov 27 14:57:47 CET 2009 - jbenc@suse.cz + +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Nov 27 13:25:55 CET 2009 - jbohac@suse.cz + +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). + +------------------------------------------------------------------- +Fri Nov 27 12:55:35 CET 2009 - trenn@suse.de + +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. + +------------------------------------------------------------------- +Fri Nov 27 11:54:58 CET 2009 - hare@suse.de + +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). + +------------------------------------------------------------------- +Fri Nov 27 11:08:00 CET 2009 - sjayaraman@suse.de + +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. + +------------------------------------------------------------------- +Fri Nov 27 11:05:54 CET 2009 - sjayaraman@suse.de + +- Update config files: NFS_SWAP=y. + +------------------------------------------------------------------- +Fri Nov 27 10:45:38 CET 2009 - sjayaraman@suse.de + +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. + +------------------------------------------------------------------- +Fri Nov 27 09:27:35 CET 2009 - sjayaraman@suse.de + +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. + +------------------------------------------------------------------- +Fri Nov 27 05:53:42 CET 2009 - knikanth@suse.de + +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). + +------------------------------------------------------------------- +Fri Nov 27 03:22:44 CET 2009 - nfbrown@suse.de + +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). + +------------------------------------------------------------------- +Thu Nov 26 19:12:55 CET 2009 - coly.li@suse.de + +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. + +------------------------------------------------------------------- +Thu Nov 26 17:00:15 CET 2009 - jslaby@suse.cz + +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). + +------------------------------------------------------------------- +Thu Nov 26 15:23:16 CET 2009 - mmarek@suse.cz + +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. + +------------------------------------------------------------------- +Thu Nov 26 14:47:41 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. + +------------------------------------------------------------------- +Thu Nov 26 12:48:43 CET 2009 - hare@suse.de + +Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Thu Nov 26 12:41:22 CET 2009 - duwe@suse.de + +- config.conf: disable build of ppc kdump flavours + (FATE#304346) + +------------------------------------------------------------------- +Thu Nov 26 12:07:24 CET 2009 - tiwai@suse.de + +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). + +------------------------------------------------------------------- +Thu Nov 26 12:00:53 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). + +------------------------------------------------------------------- +Thu Nov 26 11:58:44 CET 2009 - tiwai@suse.de + +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). + +------------------------------------------------------------------- +Thu Nov 26 03:44:36 CET 2009 - nfbrown@suse.de + +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 + +------------------------------------------------------------------- +Thu Nov 26 00:29:46 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Nov 26 00:25:25 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. + +------------------------------------------------------------------- +Wed Nov 25 23:48:14 CET 2009 - tonyj@suse.de + +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. + +------------------------------------------------------------------- +Wed Nov 25 23:09:05 CET 2009 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). + +------------------------------------------------------------------- +Wed Nov 25 03:16:32 CET 2009 - jeffm@suse.com + +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). + +------------------------------------------------------------------- +Tue Nov 24 19:04:38 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. + +------------------------------------------------------------------- +Tue Nov 24 17:29:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). + +------------------------------------------------------------------- +Tue Nov 24 13:56:01 CET 2009 - duwe@suse.de + +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) + +------------------------------------------------------------------- +Tue Nov 24 08:08:35 CET 2009 - sjayaraman@suse.de + +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). + +------------------------------------------------------------------- +Tue Nov 24 07:11:22 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). + +------------------------------------------------------------------- +Mon Nov 23 17:41:03 CET 2009 - jeffm@suse.com + +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + +------------------------------------------------------------------- +Mon Nov 23 15:44:04 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). + +------------------------------------------------------------------- +Mon Nov 23 14:15:37 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix + +------------------------------------------------------------------- +Mon Nov 23 08:04:16 CET 2009 - sjayaraman@suse.de + +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. + +------------------------------------------------------------------- +Mon Nov 23 07:34:49 CET 2009 - sjayaraman@suse.de + +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). + +------------------------------------------------------------------- +Fri Nov 20 21:04:54 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. + +------------------------------------------------------------------- +Fri Nov 20 19:08:56 CET 2009 - jeffm@suse.com + +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. + +------------------------------------------------------------------- +Fri Nov 20 17:29:45 CET 2009 - mmarek@suse.cz + +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). + +------------------------------------------------------------------- +Fri Nov 20 17:26:01 CET 2009 - jbeulich@novell.com + +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. + +------------------------------------------------------------------- +Fri Nov 20 15:07:41 CET 2009 - agruen@suse.de + +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). + +------------------------------------------------------------------- +Fri Nov 20 15:02:22 CET 2009 - jslaby@suse.cz + +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). + +------------------------------------------------------------------- +Fri Nov 20 14:38:38 CET 2009 - jslaby@suse.cz + +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. + +------------------------------------------------------------------- +Fri Nov 20 14:11:56 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 14:11:26 CET 2009 - bphilips@suse.de + +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). + +------------------------------------------------------------------- +Fri Nov 20 13:58:29 CET 2009 - hare@suse.de + +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). + +------------------------------------------------------------------- +Fri Nov 20 13:41:37 CET 2009 - bphilips@suse.de + +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). + +------------------------------------------------------------------- +Fri Nov 20 13:16:20 CET 2009 - hare@suse.de + +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. + +------------------------------------------------------------------- +Fri Nov 20 12:32:48 CET 2009 - hare@suse.de + +Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. + +------------------------------------------------------------------- +Fri Nov 20 12:19:54 CET 2009 - bphilips@suse.de + +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). + +------------------------------------------------------------------- +Fri Nov 20 09:06:24 CET 2009 - jbeulich@novell.com + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). + +------------------------------------------------------------------- +Fri Nov 20 05:55:12 CET 2009 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). + +------------------------------------------------------------------- +Fri Nov 20 05:31:32 CET 2009 - jjolly@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) + +------------------------------------------------------------------- +Fri Nov 20 01:43:27 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Fri Nov 20 01:30:46 CET 2009 - jeffm@suse.de + +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). + +------------------------------------------------------------------- +Thu Nov 19 20:04:16 CET 2009 - tonyj@suse.de + +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. + +------------------------------------------------------------------- +Thu Nov 19 19:58:15 CET 2009 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: + +------------------------------------------------------------------- +Thu Nov 19 15:33:07 CET 2009 - jbohac@suse.cz + +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). + +------------------------------------------------------------------- +Thu Nov 19 15:04:17 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. + +------------------------------------------------------------------- +Thu Nov 19 14:43:31 CET 2009 - hare@suse.de + +Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. + +------------------------------------------------------------------- +Thu Nov 19 13:34:34 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). + +------------------------------------------------------------------- +Thu Nov 19 12:51:30 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. + +------------------------------------------------------------------- +Thu Nov 19 12:30:28 CET 2009 - hare@suse.de + +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. + +------------------------------------------------------------------- +Thu Nov 19 11:54:22 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). + +------------------------------------------------------------------- +Thu Nov 19 10:04:14 CET 2009 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. + +------------------------------------------------------------------- +Thu Nov 19 09:30:52 CET 2009 - hare@suse.de + +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. + +------------------------------------------------------------------- +Thu Nov 19 08:44:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. + +------------------------------------------------------------------- +Thu Nov 19 08:17:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). + +------------------------------------------------------------------- +Wed Nov 18 21:58:51 CET 2009 - jeffm@suse.com + +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. + +------------------------------------------------------------------- +Wed Nov 18 21:53:18 CET 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS + +------------------------------------------------------------------- +Wed Nov 18 20:56:52 CET 2009 - jeffm@suse.com + +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). + +------------------------------------------------------------------- +Wed Nov 18 18:07:48 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix + +------------------------------------------------------------------- +Wed Nov 18 17:12:10 CET 2009 - jeffm@suse.com + +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. + +------------------------------------------------------------------- +Wed Nov 18 16:48:59 CET 2009 - agraf@suse.de + +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). + +------------------------------------------------------------------- +Wed Nov 18 15:52:02 CET 2009 - hare@suse.de + +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) + +------------------------------------------------------------------- +Wed Nov 18 15:39:48 CET 2009 - hare@suse.de + +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). + +------------------------------------------------------------------- +Wed Nov 18 15:19:32 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 15:16:59 CET 2009 - agraf@suse.de + +- Update config files to enable pv-ops for KVM clock. (bnc#556135) + +------------------------------------------------------------------- +Wed Nov 18 14:52:16 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). + +------------------------------------------------------------------- +Wed Nov 18 14:35:44 CET 2009 - jkosina@suse.de + +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly + +------------------------------------------------------------------- +Wed Nov 18 14:32:52 CET 2009 - agraf@suse.de + +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. + +------------------------------------------------------------------- +Wed Nov 18 14:07:01 CET 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: Delete. + +------------------------------------------------------------------- +Wed Nov 18 13:37:41 CET 2009 - trenn@suse.de + +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors + +------------------------------------------------------------------- +Wed Nov 18 12:58:34 CET 2009 - trenn@suse.de + +- Update config files. + Do the same for i386 + +------------------------------------------------------------------- +Wed Nov 18 10:14:35 CET 2009 - trenn@suse.de + +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. + +------------------------------------------------------------------- +Mon Nov 16 23:44:12 CET 2009 - jkosina@suse.de + +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). + +------------------------------------------------------------------- +Fri Nov 13 21:16:04 CET 2009 - mmarek@suse.cz + +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). + +------------------------------------------------------------------- +Fri Nov 13 10:53:28 CET 2009 - npiggin@suse.de + +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. + +------------------------------------------------------------------- +Wed Nov 11 14:45:36 CET 2009 - jack@suse.cz + +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). + +------------------------------------------------------------------- +Wed Nov 11 11:18:01 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Nov 11 10:55:56 CET 2009 - npiggin@suse.de + +- Disable PARAVIRT_GUEST on x86 32 and 64. + +------------------------------------------------------------------- +Tue Nov 10 06:51:46 CET 2009 - teheo@suse.de + +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). + +------------------------------------------------------------------- +Tue Nov 10 06:50:57 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Nov 10 06:23:17 CET 2009 - npiggin@suse.de + +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. + +------------------------------------------------------------------- +Mon Nov 9 14:02:14 CET 2009 - npiggin@suse.de + +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. + +------------------------------------------------------------------- +Mon Nov 9 11:22:46 CET 2009 - npiggin@suse.de + +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. + +------------------------------------------------------------------- +Mon Nov 9 10:29:49 CET 2009 - npiggin@suse.de + +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. + +------------------------------------------------------------------- +Mon Nov 9 04:00:28 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). + +------------------------------------------------------------------- +Mon Nov 9 01:03:10 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). + +------------------------------------------------------------------- +Fri Nov 6 22:46:26 CET 2009 - trenn@suse.de + +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). + +------------------------------------------------------------------- +Fri Nov 6 16:18:21 CET 2009 - jeffm@suse.de + +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. + +------------------------------------------------------------------- +Fri Nov 6 15:12:19 CET 2009 - trenn@suse.de + +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). + +------------------------------------------------------------------- +Fri Nov 6 13:33:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix last change. + +------------------------------------------------------------------- +Fri Nov 6 12:47:52 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. + +------------------------------------------------------------------- +Fri Nov 6 09:50:40 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). + +------------------------------------------------------------------- +Fri Nov 6 09:40:45 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. + +------------------------------------------------------------------- +Thu Nov 5 19:14:03 CET 2009 - jeffm@suse.com + +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again + +------------------------------------------------------------------- +Thu Nov 5 18:53:24 CET 2009 - jeffm@suse.com + +- Performance: Disabled CONFIG_PARAVIRT on all flavors. + +------------------------------------------------------------------- +Thu Nov 5 16:35:57 CET 2009 - mmarek@suse.cz + +- Delete unused 2.6.31.y patches. + +------------------------------------------------------------------- +Thu Nov 5 15:59:58 CET 2009 - mmarek@suse.cz + +- supported.conf: add libfcoe and fix typo. + +------------------------------------------------------------------- +Thu Nov 5 12:54:06 CET 2009 - mmarek@suse.cz + +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. + +------------------------------------------------------------------- +Thu Nov 5 12:19:27 CET 2009 - mmarek@suse.cz + +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. + +------------------------------------------------------------------- +Thu Nov 5 10:56:15 CET 2009 - hare@suse.de + +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). + +------------------------------------------------------------------- +Thu Nov 5 10:52:13 CET 2009 - hare@suse.de + +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). + +------------------------------------------------------------------- +Wed Nov 4 23:02:07 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete stray text. + +------------------------------------------------------------------- +Tue Nov 3 15:40:19 CET 2009 - mmarek@suse.cz + +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). + +------------------------------------------------------------------- +Mon Nov 2 16:09:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. + +------------------------------------------------------------------- +Mon Nov 2 16:04:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. + +------------------------------------------------------------------- +Mon Nov 2 13:18:55 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. + +------------------------------------------------------------------- +Mon Nov 2 12:49:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). + +------------------------------------------------------------------- +Thu Oct 29 06:29:38 CET 2009 - tonyj@suse.de + +- Update ppc/ps3 config for CONFIG_UTRACE + +------------------------------------------------------------------- +Thu Oct 29 01:37:02 CET 2009 - tonyj@suse.de + +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) + +------------------------------------------------------------------- +Wed Oct 28 22:51:38 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). + +------------------------------------------------------------------- +Wed Oct 28 14:51:28 CET 2009 - jdelvare@suse.de + +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. + +------------------------------------------------------------------- +Tue Oct 27 17:15:40 CET 2009 - jbohac@suse.cz + +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) + +------------------------------------------------------------------- +Tue Oct 27 16:45:20 CET 2009 - jkosina@suse.de + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y + +------------------------------------------------------------------- +Tue Oct 27 15:08:26 CET 2009 - jbeulich@novell.com + +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. + +------------------------------------------------------------------- +Tue Oct 27 14:35:26 CET 2009 - jkosina@suse.de + +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. + +------------------------------------------------------------------- +Fri Oct 23 18:17:21 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5-git3. + +------------------------------------------------------------------- +Fri Oct 23 15:11:53 CEST 2009 - mmarek@suse.cz + +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. + +------------------------------------------------------------------- +Fri Oct 23 15:11:09 CEST 2009 - mmarek@suse.cz + +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. + +------------------------------------------------------------------- +Fri Oct 23 12:53:53 CEST 2009 - mmarek@suse.cz + +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). + +------------------------------------------------------------------- +Thu Oct 22 18:38:47 CEST 2009 - jeffm@suse.com + +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). + +------------------------------------------------------------------- +Tue Oct 20 15:27:25 CEST 2009 - jbeulich@novell.com + +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. + +------------------------------------------------------------------- +Tue Oct 20 14:47:55 CEST 2009 - jbeulich@novell.com + +- patches.fixes/use-totalram_pages: Delete. + +------------------------------------------------------------------- +Tue Oct 20 14:45:22 CEST 2009 - jbeulich@novell.com + +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. + +------------------------------------------------------------------- +Mon Oct 19 15:24:25 CEST 2009 - jeffm@suse.com + +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) + +------------------------------------------------------------------- +Mon Oct 19 15:21:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. + +------------------------------------------------------------------- +Fri Oct 16 19:18:25 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Fri Oct 16 17:01:11 CEST 2009 - jeffm@suse.com + +- Update to 2.6.32-rc5. + +------------------------------------------------------------------- +Fri Oct 16 16:45:53 CEST 2009 - mmarek@suse.de + +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. + +------------------------------------------------------------------- +Fri Oct 16 15:51:56 CEST 2009 - mmarek@suse.de + +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. + +------------------------------------------------------------------- +Fri Oct 16 14:19:01 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. + +------------------------------------------------------------------- +Fri Oct 16 12:08:06 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. + +------------------------------------------------------------------- +Tue Oct 13 02:29:26 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: Added missing sites. + +------------------------------------------------------------------- +Mon Oct 12 23:08:39 CEST 2009 - jeffm@suse.com + +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. + +------------------------------------------------------------------- +Mon Oct 12 21:05:07 CEST 2009 - jeffm@suse.de + +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. + +------------------------------------------------------------------- +Mon Oct 12 20:07:54 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Oct 12 19:54:16 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. + +------------------------------------------------------------------- +Mon Oct 12 16:23:59 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: Refresh and enable. + +------------------------------------------------------------------- +Fri Oct 9 20:00:01 CEST 2009 - jeffm@suse.de + +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:57:28 CEST 2009 - jeffm@suse.de + +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:54 CEST 2009 - jeffm@suse.de + +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:42:40 CEST 2009 - jeffm@suse.de + +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 16:12:22 CEST 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: Delete. + +------------------------------------------------------------------- +Fri Oct 9 16:11:55 CEST 2009 - jeffm@suse.de + +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. + +------------------------------------------------------------------- +Fri Oct 9 15:08:54 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Fri Oct 9 14:52:31 CEST 2009 - jeffm@suse.de + +- Update to 2.6.32-rc3. + +------------------------------------------------------------------- +Fri Oct 9 00:35:47 CEST 2009 - jeffm@suse.de + +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS + +------------------------------------------------------------------- +Thu Oct 8 23:37:34 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. + +------------------------------------------------------------------- +Thu Oct 8 23:36:50 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. + +------------------------------------------------------------------- +Thu Oct 8 22:49:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . + +------------------------------------------------------------------- +Thu Oct 8 22:44:26 CEST 2009 - jeffm@suse.de + +- patches.suse/kdb-build-fixes: kdb: Build fixes. + +------------------------------------------------------------------- +Thu Oct 8 22:32:46 CEST 2009 - jeffm@suse.de + +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. + +------------------------------------------------------------------- +Thu Oct 8 21:54:40 CEST 2009 - jeffm@suse.de + +- patches.rpmify/winbond-build-fixes: winbond: API fix. + +------------------------------------------------------------------- +Thu Oct 8 21:53:59 CEST 2009 - jeffm@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Thu Oct 8 21:48:43 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 8 20:07:07 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. + +------------------------------------------------------------------- +Thu Oct 8 00:27:18 CEST 2009 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix + +------------------------------------------------------------------- +Wed Oct 7 15:20:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). + +------------------------------------------------------------------- +Wed Oct 7 13:15:17 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). + +------------------------------------------------------------------- +Tue Oct 6 21:31:00 CEST 2009 - gregkh@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. + +------------------------------------------------------------------- +Tue Oct 6 17:30:29 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.2. + +------------------------------------------------------------------- +Tue Oct 6 08:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). + +------------------------------------------------------------------- +Mon Oct 5 19:45:27 CEST 2009 - gregkh@suse.de + +- refresh patch fuzz due to 2.6.31.2 import. + +------------------------------------------------------------------- +Mon Oct 5 19:43:13 CEST 2009 - gregkh@suse.de + +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes + +------------------------------------------------------------------- +Mon Oct 5 08:40:56 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). + +------------------------------------------------------------------- +Fri Oct 2 17:06:53 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. + +------------------------------------------------------------------- +Fri Oct 2 09:43:32 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. + +------------------------------------------------------------------- +Thu Oct 1 13:18:09 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31.1 and c/s 934. + +------------------------------------------------------------------- +Thu Oct 1 11:36:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). + +------------------------------------------------------------------- +Wed Sep 30 21:51:13 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes + +------------------------------------------------------------------- +Wed Sep 30 15:50:54 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. + +------------------------------------------------------------------- +Tue Sep 29 11:17:48 CEST 2009 - trenn@suse.de + +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) + +------------------------------------------------------------------- +Wed Sep 23 13:29:27 CEST 2009 - teheo@suse.de + +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. + +------------------------------------------------------------------- +Tue Sep 22 12:14:52 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). + +------------------------------------------------------------------- +Mon Sep 21 20:39:57 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Sep 21 20:20:11 CEST 2009 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). + +------------------------------------------------------------------- +Sat Sep 19 13:51:50 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). + +------------------------------------------------------------------- +Sat Sep 19 13:39:38 CEST 2009 - mmarek@suse.cz + +- rpm/postun.sh: remove dead code. + +------------------------------------------------------------------- +Fri Sep 18 21:20:14 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). + +------------------------------------------------------------------- +Thu Sep 17 21:25:23 CEST 2009 - jeffm@suse.de + +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). + +------------------------------------------------------------------- +Thu Sep 17 21:08:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. + +------------------------------------------------------------------- +Wed Sep 16 15:33:05 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31 final. + +------------------------------------------------------------------- +Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de + +Backport attach inhibition for builtin pci drivers from 2.6.32-rc. + +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. + +------------------------------------------------------------------- +Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de + +Backport patches from 2.6.32-rc to ease ossp testing. + +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. + +------------------------------------------------------------------- +Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de + +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) + +------------------------------------------------------------------- +Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com + +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) + +------------------------------------------------------------------- +Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com + +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. + +------------------------------------------------------------------- +Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de + +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). + +------------------------------------------------------------------- +Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de + +- patch fuzz removal now that 2.6.31 is the base. + +------------------------------------------------------------------- +Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de + +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) + +------------------------------------------------------------------- +Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id + +------------------------------------------------------------------- +Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-final. + +------------------------------------------------------------------- +Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de + +- refresh patches for fuzz due to upstream changes + +------------------------------------------------------------------- +Tue Sep 8 18:44:20 CEST 2009 - gregkh@suse.de + +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix + +------------------------------------------------------------------- +Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de + +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). + +------------------------------------------------------------------- +Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: delete obsolete macro. + +------------------------------------------------------------------- +Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %post script is no + longer compatible with ancient versions. + +------------------------------------------------------------------- +Mon Sep 7 11:53:09 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). + +------------------------------------------------------------------- +Fri Sep 4 21:11:39 CEST 2009 - jeffm@suse.de + +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). + +------------------------------------------------------------------- +Fri Sep 4 14:35:57 CEST 2009 - mmarek@suse.cz + +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. + +------------------------------------------------------------------- +Fri Sep 4 11:39:02 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. + +------------------------------------------------------------------- +Thu Sep 3 02:43:28 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. + +------------------------------------------------------------------- +Wed Sep 2 17:27:49 CEST 2009 - jbeulich@novell.com + +- Update Xen config files. + +------------------------------------------------------------------- +Wed Sep 2 15:39:54 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. + +------------------------------------------------------------------- +Wed Sep 2 08:06:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs + +------------------------------------------------------------------- +Tue Sep 1 19:16:24 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: Update to latest git. + +------------------------------------------------------------------- +Tue Sep 1 19:13:51 CEST 2009 - jeffm@suse.com + +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). + +------------------------------------------------------------------- +Tue Sep 1 15:11:15 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). + +------------------------------------------------------------------- +Mon Aug 31 22:02:50 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc8. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Mon Aug 31 12:17:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. + +------------------------------------------------------------------- +Wed Aug 26 12:38:11 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre + +------------------------------------------------------------------- +Tue Aug 25 18:04:57 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. + +------------------------------------------------------------------- +Tue Aug 25 10:07:41 CEST 2009 - jbeulich@novell.com + +- scripts/run_oldconfig.sh: Consistently use $prefix. + +------------------------------------------------------------------- +Mon Aug 24 16:47:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 + (bnc#530752). + +------------------------------------------------------------------- +Mon Aug 24 16:35:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc7. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Mon Aug 24 16:16:04 CEST 2009 - jeffm@suse.com + +- Update config files: Enable CONFIG_PROC_EVENTS. + +------------------------------------------------------------------- +Fri Aug 21 16:05:42 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. + +------------------------------------------------------------------- +Fri Aug 21 16:00:46 CEST 2009 - mmarek@suse.cz + +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. + +------------------------------------------------------------------- +Fri Aug 21 15:50:51 CEST 2009 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. + +------------------------------------------------------------------- +Fri Aug 21 15:48:15 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. + +------------------------------------------------------------------- +Thu Aug 20 17:52:08 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Thu Aug 20 11:40:58 CEST 2009 - jbeulich@novell.com + +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. + +------------------------------------------------------------------- +Wed Aug 19 09:22:46 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc6 and c/s 928. + +------------------------------------------------------------------- +Wed Aug 19 00:33:54 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. + +------------------------------------------------------------------- +Tue Aug 18 20:16:36 CEST 2009 - gregkh@suse.de + +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). + +------------------------------------------------------------------- +Mon Aug 17 21:10:55 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. + +------------------------------------------------------------------- +Mon Aug 17 16:38:38 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc6. + +------------------------------------------------------------------- +Mon Aug 17 00:19:20 CEST 2009 - gregkh@suse.de + +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. + +------------------------------------------------------------------- +Sun Aug 16 23:22:47 CEST 2009 - coly.li@suse.de + +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package + +------------------------------------------------------------------- +Sat Aug 15 12:18:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). + +------------------------------------------------------------------- +Sat Aug 15 01:55:23 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). + +------------------------------------------------------------------- +Fri Aug 14 21:47:28 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add some hints how to set the %jobs + macro (bnc#530535). + +------------------------------------------------------------------- +Fri Aug 14 16:11:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: for overriden functions, keep the keyword in + --pack. + +------------------------------------------------------------------- +Thu Aug 13 16:01:51 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. + +------------------------------------------------------------------ +Thu Aug 13 12:06:50 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). + +------------------------------------------------------------------- +Wed Aug 12 13:34:25 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). + +------------------------------------------------------------------- +Wed Aug 12 13:19:08 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. + +------------------------------------------------------------------- +Tue Aug 11 14:39:42 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). + +------------------------------------------------------------------- +Tue Aug 11 13:05:37 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. + +------------------------------------------------------------------- +Tue Aug 11 09:48:34 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. + +------------------------------------------------------------------- +Mon Aug 10 12:55:56 CEST 2009 - mmarek@suse.cz + +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. + +------------------------------------------------------------------- +Mon Aug 10 12:08:25 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). + +------------------------------------------------------------------- +Mon Aug 10 08:57:15 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. + +------------------------------------------------------------------- +Fri Aug 7 17:25:11 CEST 2009 - jeffm@suse.com + +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. + +------------------------------------------------------------------- +Fri Aug 7 16:38:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) + +------------------------------------------------------------------- +Fri Aug 7 15:16:21 CEST 2009 - tiwai@suse.de + +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules + +------------------------------------------------------------------- +Fri Aug 7 10:06:23 CEST 2009 - mmarek@suse.cz + +- make config/s390/vanilla a symlink again. + +------------------------------------------------------------------- +Fri Aug 7 09:42:58 CEST 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. + +------------------------------------------------------------------- +Thu Aug 6 23:25:39 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. + +------------------------------------------------------------------- +Thu Aug 6 16:24:09 CEST 2009 - jeffm@suse.de + +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. + +------------------------------------------------------------------- +Wed Aug 5 22:33:56 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 20:46:02 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed Aug 5 18:22:05 CEST 2009 - gregkh@suse.de + +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. + +------------------------------------------------------------------- +Wed Aug 5 17:55:56 CEST 2009 - gregkh@suse.de + +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. + +------------------------------------------------------------------- +Wed Aug 5 17:02:00 CEST 2009 - jeffm@suse.de + +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). + +------------------------------------------------------------------- +Wed Aug 5 01:04:08 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds + +------------------------------------------------------------------- +Tue Aug 4 23:21:31 CEST 2009 - gregkh@suse.de + +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 + +------------------------------------------------------------------- +Tue Aug 4 16:10:42 CEST 2009 - jeffm@suse.de + +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. + +------------------------------------------------------------------- +Tue Aug 4 14:53:26 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y + +------------------------------------------------------------------- +Mon Aug 3 22:15:32 CEST 2009 - jeffm@suse.de + +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. + +------------------------------------------------------------------- +Mon Aug 3 22:01:58 CEST 2009 - jeffm@suse.de + +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port + +------------------------------------------------------------------- +Mon Aug 3 19:42:42 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. + +------------------------------------------------------------------- +Mon Aug 3 11:09:08 CEST 2009 - coly.li@suse.de + +- Update config files to enable CONFIG_DLM_DEBUG. + +------------------------------------------------------------------- +Fri Jul 31 14:30:38 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. + +------------------------------------------------------------------- +Wed Jul 29 16:00:59 CEST 2009 - tiwai@suse.de + +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y + +------------------------------------------------------------------- +Tue Jul 28 12:23:12 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. + +------------------------------------------------------------------- +Tue Jul 28 11:21:11 CEST 2009 - mmarek@suse.cz + +- Update config files: disable CONFIG_FB_UDL on ia64. + +------------------------------------------------------------------- +Tue Jul 28 09:54:55 CEST 2009 - jbeulich@novell.com + +- config.conf: Remove duplicate i386/desktop entry. + +------------------------------------------------------------------- +Tue Jul 28 01:03:23 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). + +------------------------------------------------------------------- +Mon Jul 27 23:57:31 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. + +------------------------------------------------------------------- +Mon Jul 27 17:06:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. + +------------------------------------------------------------------- +Mon Jul 27 13:43:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. + +------------------------------------------------------------------- +Mon Jul 27 03:04:23 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes + +------------------------------------------------------------------- +Mon Jul 27 01:47:21 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Mon Jul 27 01:45:37 CEST 2009 - jeffm@suse.de + +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. + +------------------------------------------------------------------- +Sun Jul 26 00:42:40 CEST 2009 - jeffm@suse.de + +- config.conf: Re-enabled trace flavor. + +------------------------------------------------------------------- +Fri Jul 24 21:23:54 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. + +------------------------------------------------------------------- +Fri Jul 24 21:21:08 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc4. + +------------------------------------------------------------------- +Thu Jul 23 12:56:16 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, + make %symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. + +------------------------------------------------------------------- +Thu Jul 23 11:58:25 CEST 2009 - mmarek@suse.cz + +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. + +------------------------------------------------------------------- +Thu Jul 23 11:21:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. + +------------------------------------------------------------------- +Wed Jul 22 18:58:38 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). + +------------------------------------------------------------------- +Wed Jul 22 17:28:36 CEST 2009 - tiwai@suse.de + +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. + +------------------------------------------------------------------- +Wed Jul 22 13:08:35 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. + +------------------------------------------------------------------- +Wed Jul 22 12:57:54 CEST 2009 - trenn@suse.de + +These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. + +------------------------------------------------------------------- +Tue Jul 21 15:38:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. + +------------------------------------------------------------------- +Tue Jul 21 12:09:42 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. + +------------------------------------------------------------------- +Tue Jul 21 11:57:00 CEST 2009 - mmarek@suse.cz + +Delete obsolete apparmor patches. + +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. + +------------------------------------------------------------------- +Tue Jul 21 11:18:57 CEST 2009 - npiggin@suse.de + +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. + +------------------------------------------------------------------- +Mon Jul 20 20:30:41 CEST 2009 - jeffm@suse.de + +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) + +------------------------------------------------------------------- +Mon Jul 20 17:26:02 CEST 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jul 20 17:02:57 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff + +------------------------------------------------------------------- +Mon Jul 20 13:02:46 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: set LC_COLLATE=C + +------------------------------------------------------------------- +Sat Jul 18 03:40:28 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:39:00 CEST 2009 - jeffm@suse.de + +- rpm/package-descriptions: Added desktop description. + +------------------------------------------------------------------- +Sat Jul 18 03:18:57 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Sat Jul 18 01:34:58 CEST 2009 - jeffm@suse.de + +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 + +------------------------------------------------------------------- +Fri Jul 17 17:10:19 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 11:25:31 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. + +------------------------------------------------------------------- +Fri Jul 17 00:39:39 CEST 2009 - jeffm@suse.com + +- patches.apparmor/apparmor.diff: ia64 build fix + +------------------------------------------------------------------- +Fri Jul 17 00:06:19 CEST 2009 - jeffm@suse.com + +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). + +------------------------------------------------------------------- +Thu Jul 16 22:50:13 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 22:44:02 CEST 2009 - jeffm@suse.de + +- patches.apparmor/apparmor.diff: AppArmor. + +------------------------------------------------------------------- +Thu Jul 16 20:15:59 CEST 2009 - jeffm@suse.de + +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. + +------------------------------------------------------------------- +Thu Jul 16 16:53:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. + +------------------------------------------------------------------- +Thu Jul 16 13:19:19 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix debugsource generation. + +------------------------------------------------------------------- +Thu Jul 16 10:46:05 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix last change. + +------------------------------------------------------------------- +Wed Jul 15 22:40:58 CEST 2009 - mmarek@suse.cz + +- rpm/split-modules: fix for module names with underscores or + dashes. + +------------------------------------------------------------------- +Wed Jul 15 22:33:07 CEST 2009 - jeffm@suse.de + +- Update to 2.6.31-rc3. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 15 17:10:29 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. + +------------------------------------------------------------------- +Wed Jul 15 16:50:44 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). + +------------------------------------------------------------------- +Tue Jul 14 15:37:36 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). + +------------------------------------------------------------------- +Mon Jul 13 22:10:13 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). + +------------------------------------------------------------------- +Mon Jul 13 16:55:56 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of function symbols. + +------------------------------------------------------------------- +Mon Jul 13 16:13:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: fix overriding of unknown symbols. + +------------------------------------------------------------------- +Tue Jul 7 14:30:30 CEST 2009 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + +Delete the leftover debugging patches for e1000e EEPROM corruption +that are not needed anymore. + +------------------------------------------------------------------- +Tue Jul 7 12:03:10 CEST 2009 - aj@suse.de + +- README.BRANCH: Update, kotd will become 11.2 eventually. + +------------------------------------------------------------------- +Mon Jul 6 21:36:35 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc2. + +------------------------------------------------------------------- +Fri Jul 3 22:32:24 CEST 2009 - jeffm@suse.com + +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. + +------------------------------------------------------------------- +Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. + +------------------------------------------------------------------- +Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: chmod +x find-provides + +------------------------------------------------------------------- +Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. + +------------------------------------------------------------------- +Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com + +- patches.arch/ia64-page-migration: Fix compiler warning. + +------------------------------------------------------------------- +Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. + +------------------------------------------------------------------- +Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz + +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory + +------------------------------------------------------------------- +Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). + +------------------------------------------------------------------- +Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de + +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m + +------------------------------------------------------------------- +Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de + +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. + +------------------------------------------------------------------- +Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. + +------------------------------------------------------------------- +Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y + +------------------------------------------------------------------- +Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y + + +------------------------------------------------------------------- +Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de + +- Update config files. + fix up config mistake in x86-64/default made in last commit. + +------------------------------------------------------------------- +Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y + +------------------------------------------------------------------- +Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y + +------------------------------------------------------------------- +Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y + +------------------------------------------------------------------- +Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y + +------------------------------------------------------------------- +Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y + +------------------------------------------------------------------- +Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y + +------------------------------------------------------------------- +Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y + +------------------------------------------------------------------- +Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de + +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y + +------------------------------------------------------------------- +Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de + +- comment out broken acpi patch for the moment. + +------------------------------------------------------------------- +Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de + +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids +. +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. + +------------------------------------------------------------------- +Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de + +- scripts/sequence-patch.sh: fix bug in ketchup usage + +------------------------------------------------------------------- +Wed Jun 10 16:12:01 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-final. + +------------------------------------------------------------------- +Wed Jun 10 10:31:34 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. + +------------------------------------------------------------------- +Tue Jun 9 17:14:45 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. + +------------------------------------------------------------------- +Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. + +------------------------------------------------------------------- +Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. + +------------------------------------------------------------------- +Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com + +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. + +------------------------------------------------------------------- +Fri Jun 5 13:43:37 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). + +------------------------------------------------------------------- +Thu Jun 4 16:26:21 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc8. + +------------------------------------------------------------------- +Thu Jun 4 07:09:52 CEST 2009 - sdietrich@suse.de + +- supported.conf: remove duplicate kernel/drivers/md/dm-log + +------------------------------------------------------------------- +Thu Jun 4 06:02:57 CEST 2009 - teheo@suse.de + +Conver ide major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Mon Jun 1 20:54:44 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc7-git4. + +------------------------------------------------------------------- +Fri May 29 09:50:28 CEST 2009 - teheo@suse.de + +Rename mangle_minor to mangle_devt and also cover sd major allocation. + +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). + +------------------------------------------------------------------- +Fri May 29 07:35:53 CEST 2009 - teheo@suse.de + +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). + +------------------------------------------------------------------- +Thu May 28 16:35:40 CEST 2009 - jdelvare@suse.de + +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). + +------------------------------------------------------------------- +Wed May 27 18:05:14 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc7-git2. + +------------------------------------------------------------------- +Wed May 27 08:22:05 CEST 2009 - gregkh@suse.de + +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. + +------------------------------------------------------------------- +Tue May 26 15:28:51 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. + +------------------------------------------------------------------- +Tue May 26 15:08:25 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. + +------------------------------------------------------------------- +Tue May 26 11:33:25 CEST 2009 - jdelvare@suse.de + +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). + +------------------------------------------------------------------- +Mon May 25 14:11:04 CEST 2009 - mmarek@suse.cz + +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 + +------------------------------------------------------------------- +Sun May 24 10:36:18 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides: fix for kernel-kdump. + +------------------------------------------------------------------- +Sat May 23 22:18:05 CEST 2009 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. + +------------------------------------------------------------------- +Fri May 22 15:47:01 CEST 2009 - teheo@suse.de + +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. + +------------------------------------------------------------------- +Fri May 22 12:42:36 CEST 2009 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. + +------------------------------------------------------------------- +Fri May 22 11:45:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. + +------------------------------------------------------------------- +Wed May 20 16:05:07 CEST 2009 - mmarek@suse.cz + +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. + +------------------------------------------------------------------- +Tue May 19 21:42:45 CEST 2009 - sdietrich@suse.de + +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. + +------------------------------------------------------------------- +Tue May 19 18:24:46 CEST 2009 - jblunck@suse.de + +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. + +------------------------------------------------------------------- +Tue May 19 18:03:44 CEST 2009 - jeffm@suse.com + +- Set CONFIG_FRAMEBUFFER_CONSOLE=y + +------------------------------------------------------------------- +Tue May 19 17:27:45 CEST 2009 - jeffm@suse.com + +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) + +------------------------------------------------------------------- +Tue May 19 16:17:34 CEST 2009 - jbeulich@novell.com + +- patches.xen/sfc-endianness: fix building with gcc 4.4. + +------------------------------------------------------------------- +Tue May 19 12:04:26 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. + +------------------------------------------------------------------- +Mon May 18 16:52:37 CEST 2009 - jeffm@suse.com + +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri May 15 19:16:23 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux + +------------------------------------------------------------------- +Thu May 14 14:09:10 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. + +------------------------------------------------------------------- +Thu May 14 11:09:01 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + %version-%source_rel in the -devel packages (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:42:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). + +------------------------------------------------------------------- +Wed May 13 15:32:58 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: fix kernel-syms requires (bnc#503280). + +------------------------------------------------------------------- +Mon May 11 21:11:59 CEST 2009 - jeffm@suse.com + +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). + +------------------------------------------------------------------- +Mon May 11 21:11:19 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. + +------------------------------------------------------------------- +Mon May 11 19:41:25 CEST 2009 - jeffm@suse.de + +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Wed May 6 17:38:57 CEST 2009 - gregkh@suse.de + +- Update config files. update vanilla configs so that the build works. + +------------------------------------------------------------------- +Wed May 6 17:19:56 CEST 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. + +------------------------------------------------------------------- +Tue May 5 17:17:21 CEST 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue May 5 16:46:08 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. + +------------------------------------------------------------------- +Tue May 5 14:31:59 CEST 2009 - jbeulich@novell.com + +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. + +------------------------------------------------------------------- +Tue May 5 11:05:37 CEST 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. + +------------------------------------------------------------------- +Tue May 5 10:08:12 CEST 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. + +------------------------------------------------------------------- +Tue May 5 10:02:41 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. + +------------------------------------------------------------------- +Tue May 5 05:22:16 CEST 2009 - teheo@suse.de + +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). + +------------------------------------------------------------------- +Fri May 1 20:01:16 CEST 2009 - jeffm@suse.com + +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. + +------------------------------------------------------------------- +Fri May 1 20:00:48 CEST 2009 - jeffm@suse.com + +- Update to 2.6.30-rc4. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri May 1 19:58:07 CEST 2009 - jeffm@suse.com + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. + +------------------------------------------------------------------- +Thu Apr 30 16:56:17 CEST 2009 - mmarek@suse.cz + +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory + +------------------------------------------------------------------- +Tue Apr 28 11:19:41 CEST 2009 - npiggin@suse.de + +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. + +------------------------------------------------------------------- +Mon Apr 27 13:48:49 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. + +------------------------------------------------------------------- +Mon Apr 27 10:41:20 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). + +------------------------------------------------------------------- +Fri Apr 24 19:28:44 CEST 2009 - gregkh@suse.de + +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. + +------------------------------------------------------------------- +Fri Apr 24 19:24:53 CEST 2009 - gregkh@suse.de + +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y + +------------------------------------------------------------------- +Fri Apr 24 18:23:21 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y + +------------------------------------------------------------------- +Fri Apr 24 18:19:34 CEST 2009 - gregkh@suse.de + +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y + +------------------------------------------------------------------- +Fri Apr 24 18:14:49 CEST 2009 - gregkh@suse.de + +- Update config files. change to use CONFIG_USB=y + +------------------------------------------------------------------- +Thu Apr 23 23:38:53 CEST 2009 - jeffm@suse.de + +- Added legacy config. + +------------------------------------------------------------------- +Thu Apr 23 23:31:39 CEST 2009 - jeffm@suse.de + +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + +------------------------------------------------------------------- +Thu Apr 23 17:53:58 CEST 2009 - jeffm@suse.de + +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. + +------------------------------------------------------------------- +Thu Apr 23 17:29:47 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc3. + +------------------------------------------------------------------- +Thu Apr 23 17:17:59 CEST 2009 - jeffm@suse.de + +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. + +------------------------------------------------------------------- +Mon Apr 20 16:44:13 CEST 2009 - jeffm@suse.de + +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" + +------------------------------------------------------------------- +Mon Apr 20 16:43:50 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2-git6. + +------------------------------------------------------------------- +Wed Apr 15 06:33:54 CEST 2009 - jeffm@suse.de + +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. + +------------------------------------------------------------------- +Fri Apr 10 20:09:08 CEST 2009 - jeffm@suse.de + +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. + +------------------------------------------------------------------- +Fri Apr 10 19:08:14 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel + +------------------------------------------------------------------- +Fri Apr 10 17:35:35 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. + +------------------------------------------------------------------- +Fri Apr 10 17:18:34 CEST 2009 - jeffm@suse.com + +- Moved linux-obj symlink handling to kernel-$flavor-devel. + +------------------------------------------------------------------- +Fri Apr 10 11:41:12 CEST 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add comment. + +------------------------------------------------------------------- +Fri Apr 10 11:12:30 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. + +------------------------------------------------------------------- +Thu Apr 9 13:52:47 CEST 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Apr 8 11:54:11 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) + +------------------------------------------------------------------- +Tue Apr 7 21:58:38 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. + +------------------------------------------------------------------- +Tue Apr 7 21:28:59 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. + +------------------------------------------------------------------- +Mon Apr 6 20:29:03 CEST 2009 - jeffm@suse.com + +- Enabled STAGING on !x86 and disabled COMEDI. + +------------------------------------------------------------------- +Mon Apr 6 19:21:37 CEST 2009 - jeffm@suse.com + +- patches.rpmify/split-package: Enable + +------------------------------------------------------------------- +Mon Apr 6 19:21:23 CEST 2009 - jeffm@suse.com + +- Update config files: Fixed i386-vanilla. + +------------------------------------------------------------------- +Mon Apr 6 19:11:52 CEST 2009 - jeffm@suse.com + +- patches.fixes/xfs-export-debug: xfs: export assertion handler. + +------------------------------------------------------------------- +Mon Apr 6 02:53:12 CEST 2009 - jeffm@suse.com + +- Switch from SPARSEMEM to DISCONTIGMEM on i386. + +------------------------------------------------------------------- +Sun Apr 5 02:24:01 CEST 2009 - jeffm@suse.com + +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. + +------------------------------------------------------------------- +Fri Apr 3 22:47:12 CEST 2009 - jeffm@suse.com + +- Update config files: Fix missing ia64-debug. + +------------------------------------------------------------------- +Fri Apr 3 22:32:01 CEST 2009 - jeffm@suse.com + +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. + +------------------------------------------------------------------- +Fri Apr 3 22:25:35 CEST 2009 - jeffm@suse.com + +- Drop NR_CPUS back to 128 on i386. + +------------------------------------------------------------------- +Fri Apr 3 19:36:31 CEST 2009 - jeffm@suse.com + +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. + +------------------------------------------------------------------- +Fri Apr 3 19:35:53 CEST 2009 - jeffm@suse.de + +- Update config files: Enabled STAGING drivers on -vanilla. + +------------------------------------------------------------------- +Fri Apr 3 17:13:32 CEST 2009 - jblunck@suse.de + +- patches.rpmify/rpm-kernel-config: Rediff. + +------------------------------------------------------------------- +Fri Apr 3 17:06:14 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh + +------------------------------------------------------------------- +Fri Apr 3 17:00:50 CEST 2009 - jeffm@suse.com + +- Update config files: Enabled STAGING drivers. + +------------------------------------------------------------------- +Fri Apr 3 16:30:02 CEST 2009 - jeffm@suse.com + +- Sync up kernel configs for x86/x86_64 flavors. + +------------------------------------------------------------------- +Fri Apr 3 14:55:26 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. + +------------------------------------------------------------------- +Thu Apr 2 23:41:52 CEST 2009 - mmarek@suse.cz + +- rpm/modversions: keep the override keyword in --pack. + +------------------------------------------------------------------- +Thu Apr 2 20:37:33 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. + +------------------------------------------------------------------- +Thu Apr 2 20:27:04 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call + +------------------------------------------------------------------- +Thu Apr 2 17:57:48 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion + +------------------------------------------------------------------- +Thu Apr 2 17:48:41 CEST 2009 - mmarek@suse.cz + +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec + +------------------------------------------------------------------- +Tue Mar 31 15:56:00 CEST 2009 - mmarek@suse.cz + +- rpm/kernel-dummy.spec.in: Delete. + +------------------------------------------------------------------- +Tue Mar 31 15:46:18 CEST 2009 - jeffm@suse.de + +- doc/README.KSYMS: Add to repo. + +------------------------------------------------------------------- +Tue Mar 31 15:39:55 CEST 2009 - mmarek@suse.cz + +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. + +------------------------------------------------------------------- +Tue Mar 31 14:49:09 CEST 2009 - mmarek@suse.cz + +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). + +------------------------------------------------------------------- +Tue Mar 31 03:08:30 CEST 2009 - jeffm@suse.de + +- Add %changelog to spec files + +------------------------------------------------------------------- +Tue Mar 31 03:07:51 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros + +------------------------------------------------------------------- +Tue Mar 31 02:54:18 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in: Create kernel-source-vanilla + +------------------------------------------------------------------- +Tue Mar 31 02:53:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:52:41 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %using_buildservice macro + +------------------------------------------------------------------- +Tue Mar 31 02:52:04 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards + +------------------------------------------------------------------- +Tue Mar 31 02:51:13 CEST 2009 - jeffm@suse.de + +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel + +------------------------------------------------------------------- +Tue Mar 31 02:50:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES + +------------------------------------------------------------------- +Tue Mar 31 02:50:15 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y + +------------------------------------------------------------------- +Tue Mar 31 02:49:53 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Use macros for cpu_arch + +------------------------------------------------------------------- +Tue Mar 31 02:49:23 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros + +------------------------------------------------------------------- +Tue Mar 31 02:48:40 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %kernelrelease macro. + +------------------------------------------------------------------- +Tue Mar 31 02:47:58 CEST 2009 - jeffm@suse.de + +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %variant instead of $variant + +------------------------------------------------------------------- +Tue Mar 31 02:47:14 CEST 2009 - jeffm@suse.de + +- kernel-source: Kill old obsoletes + +------------------------------------------------------------------- +Tue Mar 31 02:46:35 CEST 2009 - jeffm@suse.de + +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %var instead of @VAR@ except where necessary + +------------------------------------------------------------------- +Tue Mar 31 02:46:12 CEST 2009 - jeffm@suse.de + +- kernel-syms: Sort by flavor, not architecture + +------------------------------------------------------------------- +Tue Mar 31 02:45:43 CEST 2009 - jeffm@suse.de + +- kernel-syms: Stop the architecture %else madness + +------------------------------------------------------------------- +Tue Mar 31 02:45:15 CEST 2009 - jeffm@suse.de + +- kernel-binary: Stop the architecture %else madness + +------------------------------------------------------------------- +Mon Mar 30 22:16:04 CEST 2009 - jeffm@suse.de + +- Removed -RT guards and a dead patch. + +------------------------------------------------------------------- +Mon Mar 30 22:14:17 CEST 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: Delete. + +------------------------------------------------------------------- +Mon Mar 30 15:26:04 CEST 2009 - jeffm@suse.de + +- patches.suse/reiserfs-inode-init: Delete. + +------------------------------------------------------------------- +Thu Mar 26 21:28:32 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. + +------------------------------------------------------------------- +Tue Mar 24 15:37:54 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-final. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Fri Mar 20 09:41:41 CET 2009 - jbeulich@novell.com + +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. + +------------------------------------------------------------------- +Wed Mar 18 15:10:32 CET 2009 - mmarek@suse.cz + +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. + +------------------------------------------------------------------- +Tue Mar 17 16:14:08 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) + +------------------------------------------------------------------- +Tue Mar 17 07:56:40 CET 2009 - knikanth@suse.de + +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) + +------------------------------------------------------------------- +Mon Mar 16 18:11:40 CET 2009 - bphilips@suse.de + +- README: add rough guide to updating KABI + +------------------------------------------------------------------- +Fri Mar 13 23:37:52 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc8. + +------------------------------------------------------------------- +Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com + +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. + +------------------------------------------------------------------- +Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com + +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. + +------------------------------------------------------------------- +Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. + +------------------------------------------------------------------- +Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de + +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. + +------------------------------------------------------------------- +Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. + +------------------------------------------------------------------- +Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). + +------------------------------------------------------------------- +Mon Mar 9 12:04:46 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. + +------------------------------------------------------------------- +Mon Mar 9 09:42:36 CET 2009 - jbeulich@novell.com + +- Update Xen config files (get tracing options back in sync with + default). + +------------------------------------------------------------------- +Fri Mar 6 20:56:37 CET 2009 - jeffm@suse.de + +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. + +------------------------------------------------------------------- +Fri Mar 6 20:36:26 CET 2009 - jeffm@suse.de + +- config.conf: Enabled Xen for building. + +------------------------------------------------------------------- +Fri Mar 6 17:49:36 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.29-rc7. + +------------------------------------------------------------------- +Fri Mar 6 13:34:30 CET 2009 - jbenc@suse.cz + +- Update config files: enabled wireless debugging in -debug flavors. + +------------------------------------------------------------------- +Fri Mar 6 10:36:19 CET 2009 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. + +------------------------------------------------------------------- +Wed Mar 4 20:18:28 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc7. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Mar 4 11:48:01 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. + +------------------------------------------------------------------- +Tue Mar 3 23:00:28 CET 2009 - jeffm@suse.com + +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. + +------------------------------------------------------------------- +Thu Feb 26 15:32:35 CET 2009 - jeffm@suse.com + +- scripts/tar-up.sh: Add -u to update existing spec files. + +------------------------------------------------------------------- +Thu Feb 26 11:50:57 CET 2009 - sven@suse.de + +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. + +------------------------------------------------------------------- +Wed Feb 25 19:41:59 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. + +------------------------------------------------------------------- +Tue Feb 24 23:28:11 CET 2009 - jeffm@suse.com + +- Update to 2.6.29-rc6-git1. + +------------------------------------------------------------------- +Sat Feb 21 17:30:47 CET 2009 - mmarek@suse.cz + +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) + +------------------------------------------------------------------- +Fri Feb 20 14:41:31 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). + +------------------------------------------------------------------- +Fri Feb 20 10:12:51 CET 2009 - jbeulich@novell.com + +- patches.suse/stack-unwind: fix patch fuzz. + +------------------------------------------------------------------- +Fri Feb 20 09:48:59 CET 2009 - jbeulich@novell.com + +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. + +------------------------------------------------------------------- +Fri Feb 20 02:49:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-common: Build fix with -I directive. + +------------------------------------------------------------------- +Fri Feb 20 02:12:56 CET 2009 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Feb 20 01:50:59 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. + +------------------------------------------------------------------- +Thu Feb 19 11:27:58 CET 2009 - mmarek@suse.cz + +- rpm/symsets.pl: allow passing only Module.symvers and no modules + +------------------------------------------------------------------- +Wed Feb 18 11:25:46 CET 2009 - olh@suse.de + +- disable ppc601 support, disable unused framebuffer drivers + +------------------------------------------------------------------- +Wed Feb 18 10:41:14 CET 2009 - olh@suse.de + +- disable kdump on ppc32 + +------------------------------------------------------------------ +Mon Feb 16 17:18:41 CET 2009 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Sat Feb 14 17:40:22 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc5. + +------------------------------------------------------------------- +Fri Feb 13 21:15:40 CET 2009 - jeffm@suse.de + +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Feb 9 22:04:41 CET 2009 - jeffm@suse.de + +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. + +------------------------------------------------------------------- +Mon Feb 9 17:47:43 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. + +------------------------------------------------------------------- +Fri Feb 6 21:34:56 CET 2009 - jeffm@suse.com + +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. + +------------------------------------------------------------------- +Fri Feb 6 20:54:14 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. + +------------------------------------------------------------------- +Fri Feb 6 14:42:13 CET 2009 - mmarek@suse.cz + +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. + +------------------------------------------------------------------- +Tue Feb 3 21:36:36 CET 2009 - jeffm@suse.de + +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). + +------------------------------------------------------------------- +Tue Feb 3 14:34:14 CET 2009 - mmarek@suse.cz + +- scripts/tar-up.sh: fix branch name in KOTD packages. + +------------------------------------------------------------------- +Tue Feb 3 12:37:06 CET 2009 - olh@suse.de + +- config.conf: readde -debug flavor for ppc64 + +------------------------------------------------------------------- +Tue Feb 3 11:51:37 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) + +------------------------------------------------------------------- +Tue Feb 3 11:48:59 CET 2009 - mmarek@suse.cz + +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". + +------------------------------------------------------------------- +Mon Feb 2 22:13:03 CET 2009 - jeffm@suse.de + +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. + +------------------------------------------------------------------- +Mon Feb 2 21:20:36 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:35:32 CET 2009 - jeffm@suse.de + +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. + +------------------------------------------------------------------- +Mon Feb 2 17:17:07 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/reiserfs_warning-reentrant + +------------------------------------------------------------------- +Mon Feb 2 11:30:07 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) + +------------------------------------------------------------------- +Mon Feb 2 10:44:23 CET 2009 - olh@suse.de + +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) + +------------------------------------------------------------------- +Mon Feb 2 10:30:50 CET 2009 - olh@suse.de + +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) + +------------------------------------------------------------------- +Sat Jan 31 04:35:24 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to 2.6.27.14-rc1 import. + +------------------------------------------------------------------- +Sat Jan 31 04:16:39 CET 2009 - gregkh@suse.de + +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. + +------------------------------------------------------------------- +Sat Jan 31 04:07:38 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier + +------------------------------------------------------------------- +Fri Jan 30 09:15:04 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) + +------------------------------------------------------------------- +Fri Jan 30 08:00:00 CET 2009 - olh@suse.de + +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 + +------------------------------------------------------------------- +Fri Jan 30 01:24:09 CET 2009 - teheo@suse.de + +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). + +------------------------------------------------------------------- +Thu Jan 29 21:02:44 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 29 18:45:32 CET 2009 - gregkh@suse.de + +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. + +------------------------------------------------------------------- +Thu Jan 29 11:43:32 CET 2009 - mmarek@suse.cz + +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. + +------------------------------------------------------------------- +Wed Jan 28 20:34:29 CET 2009 - agruen@suse.de + +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 18:50:59 CET 2009 - agruen@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). + +------------------------------------------------------------------- +Wed Jan 28 15:59:27 CET 2009 - mmarek@suse.cz + +- config/s390/s390: the -man package still fails for s390, disable + it + +------------------------------------------------------------------- +Wed Jan 28 14:27:18 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 + +------------------------------------------------------------------- +Wed Jan 28 13:23:01 CET 2009 - mmarek@suse.cz + +- fix kernel-default.ppc64 reference symsets + +------------------------------------------------------------------- +Wed Jan 28 12:06:53 CET 2009 - jslaby@suse.cz + +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] + +------------------------------------------------------------------- +Wed Jan 28 08:16:54 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) + +------------------------------------------------------------------- +Tue Jan 27 23:33:09 CET 2009 - jeffm@suse.de + +- Update config files: Disable ftrace in -debug on ppc64 + +------------------------------------------------------------------- +Tue Jan 27 23:16:03 CET 2009 - jeffm@suse.de + +- config.conf: Added -debug flavor for ppc64. + +------------------------------------------------------------------- +Tue Jan 27 13:40:53 CET 2009 - bwalle@suse.de + +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. + +------------------------------------------------------------------- +Tue Jan 27 09:05:30 CET 2009 - hare@suse.de + +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). + +------------------------------------------------------------------- +Tue Jan 27 08:52:49 CET 2009 - jbeulich@novell.com + +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. + +------------------------------------------------------------------- +Tue Jan 27 07:44:18 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 19:53:20 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change + +------------------------------------------------------------------- +Mon Jan 26 19:36:59 CET 2009 - jeffm@suse.de + +- config.conf: Added kernel-vmi to i386. + +------------------------------------------------------------------- +Mon Jan 26 19:08:43 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 17:14:44 CET 2009 - mmarek@suse.cz + +- kabi: import FCoE changes + +------------------------------------------------------------------- +Mon Jan 26 17:00:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. + +------------------------------------------------------------------- +Mon Jan 26 15:35:41 CET 2009 - rw@suse.de + +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) + +------------------------------------------------------------------- +Mon Jan 26 15:31:39 CET 2009 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) + +------------------------------------------------------------------- +Mon Jan 26 14:19:30 CET 2009 - kkeil@suse.de + +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) + +------------------------------------------------------------------- +Mon Jan 26 13:44:37 CET 2009 - jbeulich@novell.com + +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. + +------------------------------------------------------------------- +Mon Jan 26 13:01:24 CET 2009 - kkeil@suse.de + +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) + +------------------------------------------------------------------- +Mon Jan 26 12:52:21 CET 2009 - jblunck@suse.de + +Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. + +------------------------------------------------------------------- +Mon Jan 26 12:18:00 CET 2009 - olh@suse.de + +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) + +------------------------------------------------------------------- +Mon Jan 26 12:15:15 CET 2009 - kkeil@suse.de + +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed + +------------------------------------------------------------------- +Mon Jan 26 12:06:30 CET 2009 - kkeil@suse.de + +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) + +------------------------------------------------------------------- +Mon Jan 26 09:17:49 CET 2009 - hare@suse.de + +- supported.conf: Correct spelling for dm-least-pending + path checker. + +------------------------------------------------------------------- +Mon Jan 26 09:16:31 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). + +------------------------------------------------------------------- +Sun Jan 25 02:07:17 CET 2009 - gregkh@suse.de + +- refresh patch fuzz now that 2.6.27.13 is in tree + +------------------------------------------------------------------- +Sun Jan 25 01:59:30 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.13 + +------------------------------------------------------------------- +Sat Jan 24 23:24:49 CET 2009 - gregkh@suse.de + +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. + +------------------------------------------------------------------- +Sat Jan 24 17:51:17 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) + +------------------------------------------------------------------- +Sat Jan 24 11:29:02 CET 2009 - mmarek@suse.cz + +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. + +------------------------------------------------------------------- +Sat Jan 24 11:26:16 CET 2009 - mmarek@suse.cz + +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 + +------------------------------------------------------------------- +Sat Jan 24 01:25:44 CET 2009 - ghaskins@suse.de + +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + + broke kabi with fix for 456542 + +------------------------------------------------------------------- +Sat Jan 24 00:35:12 CET 2009 - trenn@suse.de + +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). + +------------------------------------------------------------------- +Fri Jan 23 20:29:24 CET 2009 - jeffm@suse.de + +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). + +------------------------------------------------------------------- +Fri Jan 23 20:19:33 CET 2009 - ghaskins@suse.de + +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. + +------------------------------------------------------------------- +Fri Jan 23 16:51:40 CET 2009 - jeffm@suse.de + +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). + +------------------------------------------------------------------- +Fri Jan 23 15:59:44 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). + +------------------------------------------------------------------- +Fri Jan 23 15:34:11 CET 2009 - jbenc@suse.cz + +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). + +------------------------------------------------------------------- +Fri Jan 23 15:08:39 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). + +------------------------------------------------------------------- +Fri Jan 23 14:59:57 CET 2009 - mmarek@suse.cz + +- kabi/severities: temporarily enable changes in FcOE modules. + +------------------------------------------------------------------- +Fri Jan 23 11:55:18 CET 2009 - hare@suse.de + +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. + +------------------------------------------------------------------- +Fri Jan 23 11:42:28 CET 2009 - bwalle@suse.de + +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + #468053). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). + +------------------------------------------------------------------- +Fri Jan 23 11:36:44 CET 2009 - hare@suse.de + +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). + +------------------------------------------------------------------- +Fri Jan 23 11:01:59 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). + +------------------------------------------------------------------- +Fri Jan 23 10:48:16 CET 2009 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out + +------------------------------------------------------------------- +Fri Jan 23 07:51:35 CET 2009 - olh@suse.de + +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c + +------------------------------------------------------------------- +Fri Jan 23 06:41:18 CET 2009 - sjayaraman@suse.de + +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). + +------------------------------------------------------------------- +Fri Jan 23 05:57:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. + +------------------------------------------------------------------- +Fri Jan 23 05:08:48 CET 2009 - gregkh@suse.de + +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. + +------------------------------------------------------------------- +Fri Jan 23 02:26:30 CET 2009 - gregkh@suse.de + +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. + +------------------------------------------------------------------- +Thu Jan 22 23:55:10 CET 2009 - kkeil@suse.de + +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) + +------------------------------------------------------------------- +Thu Jan 22 22:43:48 CET 2009 - tonyj@suse.de + +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). + +------------------------------------------------------------------- +Thu Jan 22 19:28:06 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. + +------------------------------------------------------------------- +Thu Jan 22 19:13:20 CET 2009 - bphilips@suse.de + +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). + +------------------------------------------------------------------- +Thu Jan 22 17:42:04 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) + +------------------------------------------------------------------- +Thu Jan 22 15:58:54 CET 2009 - bwalle@suse.de + +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. + +------------------------------------------------------------------- +Thu Jan 22 15:50:44 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. + +------------------------------------------------------------------- +Thu Jan 22 15:29:07 CET 2009 - mmarek@suse.cz + +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. + +------------------------------------------------------------------- +Thu Jan 22 14:14:03 CET 2009 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) + +------------------------------------------------------------------- +Thu Jan 22 14:03:12 CET 2009 - olh@suse.de + +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. + +------------------------------------------------------------------- +Thu Jan 22 13:29:23 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) + +------------------------------------------------------------------- +Thu Jan 22 12:58:06 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) + +------------------------------------------------------------------- +Thu Jan 22 12:25:59 CET 2009 - jbohac@suse.cz + +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + +------------------------------------------------------------------- +Thu Jan 22 12:10:39 CET 2009 - rw@suse.de + +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) + +------------------------------------------------------------------- +Thu Jan 22 11:28:20 CET 2009 - jkosina@suse.de + +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). + +------------------------------------------------------------------- +Thu Jan 22 10:30:46 CET 2009 - jblunck@suse.de + +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). + +------------------------------------------------------------------- +Thu Jan 22 10:02:42 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). + +------------------------------------------------------------------- +Thu Jan 22 09:25:52 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). + +------------------------------------------------------------------- +Thu Jan 22 01:58:48 CET 2009 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: fix missing jl arg + +------------------------------------------------------------------- +Wed Jan 21 21:09:15 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks + +------------------------------------------------------------------- +Wed Jan 21 20:04:30 CET 2009 - jeffm@suse.de + +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). + +------------------------------------------------------------------- +Wed Jan 21 19:56:34 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. + +------------------------------------------------------------------- +Wed Jan 21 19:46:46 CET 2009 - gregkh@suse.de + +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. + +------------------------------------------------------------------- +Wed Jan 21 19:35:32 CET 2009 - rw@suse.de + +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) + +------------------------------------------------------------------- +Wed Jan 21 19:23:31 CET 2009 - jeffm@suse.de + +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). + +------------------------------------------------------------------- +Wed Jan 21 19:15:43 CET 2009 - jeffm@suse.de + +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). + +------------------------------------------------------------------- +Wed Jan 21 19:12:47 CET 2009 - jeffm@suse.de + +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). + +------------------------------------------------------------------- +Wed Jan 21 19:06:26 CET 2009 - jbenc@suse.cz + +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). + +------------------------------------------------------------------- +Wed Jan 21 19:01:41 CET 2009 - jbenc@suse.cz + +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). + +------------------------------------------------------------------- +Wed Jan 21 18:51:54 CET 2009 - jbenc@suse.cz + +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). + +------------------------------------------------------------------- +Wed Jan 21 16:38:10 CET 2009 - hare@suse.de + +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). + +------------------------------------------------------------------- +Wed Jan 21 14:04:08 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). + +------------------------------------------------------------------- +Wed Jan 21 12:08:54 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching + +------------------------------------------------------------------- +Wed Jan 21 10:20:05 CET 2009 - olh@suse.de + +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg + +------------------------------------------------------------------- +Wed Jan 21 10:04:08 CET 2009 - olh@suse.de + +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' + +------------------------------------------------------------------- +Wed Jan 21 08:09:10 CET 2009 - olh@suse.de + +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) + +------------------------------------------------------------------- +Tue Jan 20 21:01:18 CET 2009 - gregkh@suse.de + +- clean up patch fuzz after 2.6.27.12 inclusion. + +------------------------------------------------------------------- +Tue Jan 20 20:50:47 CET 2009 - gregkh@suse.de + +- Update to the real 2.6.27.12 + +------------------------------------------------------------------- +Tue Jan 20 17:00:55 CET 2009 - jeffm@suse.de + +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. + +------------------------------------------------------------------- +Tue Jan 20 16:39:35 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) + +------------------------------------------------------------------- +Tue Jan 20 15:24:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). + +------------------------------------------------------------------- +Tue Jan 20 15:15:19 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) + +------------------------------------------------------------------- +Tue Jan 20 12:19:52 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) + +------------------------------------------------------------------- +Mon Jan 19 16:40:39 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: set %tolerate_kabi_changes to 6 + +------------------------------------------------------------------- +Mon Jan 19 16:40:11 CET 2009 - mmarek@suse.cz + +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). + +------------------------------------------------------------------- +Mon Jan 19 13:56:20 CET 2009 - mmarek@suse.cz + +- import SLE11 RC2 reference kabi + +------------------------------------------------------------------- +Mon Jan 19 11:35:12 CET 2009 - hare@suse.de + +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). + +------------------------------------------------------------------- +Sat Jan 17 00:20:49 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc2 + +------------------------------------------------------------------- +Fri Jan 16 17:46:11 CET 2009 - od@suse.de + +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S + +------------------------------------------------------------------- +Fri Jan 16 16:09:26 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Fri Jan 16 10:55:12 CET 2009 - olh@suse.de + +- enable mptsas in kdump kernel to allow crashdump on QS2x blades + +------------------------------------------------------------------- +Fri Jan 16 08:44:42 CET 2009 - tiwai@suse.de + +Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). + +------------------------------------------------------------------- +Fri Jan 16 07:03:59 CET 2009 - jjolly@suse.de + +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). + +------------------------------------------------------------------- +Thu Jan 15 23:53:36 CET 2009 - gregkh@suse.de + +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. + +------------------------------------------------------------------- +Thu Jan 15 23:47:39 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. + +------------------------------------------------------------------- +Thu Jan 15 11:37:26 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). + +------------------------------------------------------------------- +Thu Jan 15 11:16:35 CET 2009 - bwalle@suse.de + +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). + +------------------------------------------------------------------- +Thu Jan 15 11:09:29 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). + +------------------------------------------------------------------- +Thu Jan 15 08:40:13 CET 2009 - olh@suse.de + +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) + +------------------------------------------------------------------- +Wed Jan 14 23:23:42 CET 2009 - jeffm@suse.de + +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. + +------------------------------------------------------------------- +Wed Jan 14 23:07:16 CET 2009 - jeffm@suse.de + +- Enabled patches.suse/unlock_page-speedup.patch + +------------------------------------------------------------------- +Wed Jan 14 22:00:49 CET 2009 - rjw@suse.de + +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). + +------------------------------------------------------------------- +Wed Jan 14 19:38:29 CET 2009 - jeffm@suse.de + +- Update config files: Disable PARAVIRT. + +------------------------------------------------------------------- +Wed Jan 14 19:20:29 CET 2009 - gregkh@suse.de + +- refresh patches for fuzz due to update to 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 19:02:21 CET 2009 - gregkh@suse.de + +- Update to final version of 2.6.27.11 + +------------------------------------------------------------------- +Wed Jan 14 16:38:47 CET 2009 - kkeil@suse.de + +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. + +------------------------------------------------------------------- +Wed Jan 14 15:56:58 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. +It came out that this is an already fixed BIOS bug. The quirk +is not needed anymore. + +------------------------------------------------------------------- +Wed Jan 14 14:53:51 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). + +------------------------------------------------------------------- +Wed Jan 14 08:45:29 CET 2009 - olh@suse.de + +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) + +------------------------------------------------------------------- +Wed Jan 14 08:32:32 CET 2009 - olh@suse.de + +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) + +------------------------------------------------------------------- +Wed Jan 14 04:33:33 CET 2009 - npiggin@suse.de + +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). + +------------------------------------------------------------------- +Wed Jan 14 00:51:58 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. + +------------------------------------------------------------------- +Wed Jan 14 00:29:20 CET 2009 - gregkh@suse.de + +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. + +------------------------------------------------------------------- +Tue Jan 13 16:46:08 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 14:54:58 CET 2009 - hare@suse.de + +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). + +------------------------------------------------------------------- +Tue Jan 13 10:43:59 CET 2009 - olh@suse.de + +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) + +------------------------------------------------------------------- +Tue Jan 13 08:55:32 CET 2009 - olh@suse.de + +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) + +------------------------------------------------------------------- +Tue Jan 13 05:25:12 CET 2009 - gregkh@suse.de + +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch + +------------------------------------------------------------------- +Mon Jan 12 20:09:42 CET 2009 - gregkh@suse.de + +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported + +------------------------------------------------------------------- +Mon Jan 12 19:06:00 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. + +------------------------------------------------------------------- +Mon Jan 12 18:39:57 CET 2009 - gregkh@suse.de + +- supported.conf: updated staging and other drivers + +------------------------------------------------------------------- +Mon Jan 12 18:11:10 CET 2009 - kkeil@suse.de + +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +------------------------------------------------------------------- +Mon Jan 12 15:50:46 CET 2009 - dgollub@suse.de + +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. + +------------------------------------------------------------------- +Mon Jan 12 14:25:27 CET 2009 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. + +------------------------------------------------------------------- +Sun Jan 11 23:18:21 CET 2009 - jkosina@suse.de + +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). + +------------------------------------------------------------------- +Fri Jan 9 18:54:47 CET 2009 - mmarek@suse.cz + +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) + +------------------------------------------------------------------- +Fri Jan 9 18:17:45 CET 2009 - trenn@suse.de + +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). + +------------------------------------------------------------------- +Fri Jan 9 16:25:12 CET 2009 - olh@suse.de + +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) + +------------------------------------------------------------------- +Fri Jan 9 16:13:13 CET 2009 - jslaby@suse.cz + +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 9 16:13:09 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors + +------------------------------------------------------------------- +Fri Jan 9 15:40:35 CET 2009 - jslaby@suse.de + +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). + +------------------------------------------------------------------- +Fri Jan 9 15:37:22 CET 2009 - jslaby@suse.de + +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). + +------------------------------------------------------------------- +Fri Jan 9 15:28:56 CET 2009 - olh@suse.de + +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) + +------------------------------------------------------------------- +Fri Jan 9 14:34:02 CET 2009 - trenn@suse.de + +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). + +------------------------------------------------------------------- +Fri Jan 9 13:03:36 CET 2009 - hare@suse.de + +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. + +------------------------------------------------------------------- +Fri Jan 9 12:31:34 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). + +------------------------------------------------------------------- +Fri Jan 9 12:28:55 CET 2009 - kkeil@suse.de + +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) + +------------------------------------------------------------------- +Fri Jan 9 12:11:23 CET 2009 - jslaby@suse.cz + +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 11:39:59 CET 2009 - hare@suse.de + +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. + +------------------------------------------------------------------- +Fri Jan 9 11:21:39 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 10:23:55 CET 2009 - hare@suse.de + +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. + +------------------------------------------------------------------- +Fri Jan 9 10:06:29 CET 2009 - jslaby@suse.cz + +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). + +------------------------------------------------------------------- +Fri Jan 9 00:19:19 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). + +------------------------------------------------------------------- +Fri Jan 9 00:14:25 CET 2009 - gregkh@suse.de + +- clean up patch fuzz + +------------------------------------------------------------------- +Thu Jan 8 23:56:01 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 23:06:58 CET 2009 - gregkh@suse.de + +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). + +------------------------------------------------------------------- +Thu Jan 8 19:38:41 CET 2009 - gregkh@suse.de + +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). + +------------------------------------------------------------------- +Thu Jan 8 19:16:28 CET 2009 - jjolly@suse.de + +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). + +------------------------------------------------------------------- +Thu Jan 8 15:47:53 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. + +------------------------------------------------------------------- +Thu Jan 8 15:13:22 CET 2009 - knikanth@suse.de + +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). + +------------------------------------------------------------------- +Thu Jan 8 13:00:35 CET 2009 - olh@suse.de + +- update kdump config, disable some unused drivers + +------------------------------------------------------------------- +Thu Jan 8 12:58:45 CET 2009 - olh@suse.de + +- refresh config files, no functional changes + +------------------------------------------------------------------- +Thu Jan 8 12:52:20 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 12:41:24 CET 2009 - tiwai@suse.de + +Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. + +------------------------------------------------------------------- +Thu Jan 8 11:46:43 CET 2009 - bwalle@suse.de + +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). + +------------------------------------------------------------------- +Thu Jan 8 10:57:36 CET 2009 - jblunck@suse.de + +- Make kernel-source.changes incremental again + +------------------------------------------------------------------- +Thu Jan 8 10:15:08 CET 2009 - olh@suse.de + +- supported.conf: rename dm-leastpending-path to dm-leastpending + +------------------------------------------------------------------- +Thu Jan 8 09:27:28 CET 2009 - olh@suse.de + +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) + +------------------------------------------------------------------- +Thu Jan 8 08:19:15 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) + +------------------------------------------------------------------- +Thu Jan 8 08:15:34 CET 2009 - olh@suse.de + +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) + +------------------------------------------------------------------- +Thu Jan 8 06:29:53 CET 2009 - gregkh@suse.de + +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. + +------------------------------------------------------------------- +Thu Jan 8 06:19:53 CET 2009 - coly.li@suse.de + +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch + +------------------------------------------------------------------- +Thu Jan 8 06:11:18 CET 2009 - coly.li@suse.de + +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". + +------------------------------------------------------------------- +Wed Jan 7 16:37:22 CET 2009 - olh@suse.de + +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) + +------------------------------------------------------------------- +Wed Jan 7 16:25:48 CET 2009 - jack@suse.cz + +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). + +------------------------------------------------------------------- +Wed Jan 7 15:43:23 CET 2009 - ghaskins@suse.de + +- Update config files (part of bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 14:55:19 CET 2009 - ghaskins@suse.de + +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). + +------------------------------------------------------------------- +Wed Jan 7 13:53:32 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). + +------------------------------------------------------------------- +Wed Jan 7 13:37:56 CET 2009 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). + +------------------------------------------------------------------- +Wed Jan 7 12:35:13 CET 2009 - hare@suse.de + +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). + +------------------------------------------------------------------- +Wed Jan 7 10:32:20 CET 2009 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). + +------------------------------------------------------------------- +Wed Jan 7 09:55:34 CET 2009 - hare@suse.de + +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). + +------------------------------------------------------------------- +Wed Jan 7 09:47:10 CET 2009 - hare@suse.de + +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. + +------------------------------------------------------------------- +Tue Jan 6 19:38:30 CET 2009 - jeffm@suse.de + +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). + +------------------------------------------------------------------- +Tue Jan 6 18:36:57 CET 2009 - jjolly@suse.de + +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). + +------------------------------------------------------------------- +Tue Jan 6 14:37:15 CET 2009 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). + +------------------------------------------------------------------- +Tue Jan 6 07:54:29 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. + +------------------------------------------------------------------- +Mon Jan 5 17:38:52 CET 2009 - mmarek@suse.cz + +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. + +------------------------------------------------------------------- +Mon Jan 5 14:09:57 CET 2009 - npiggin@suse.de + +- Fix ps3 config. + +------------------------------------------------------------------- +Mon Jan 5 09:53:42 CET 2009 - npiggin@suse.de + +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. + +------------------------------------------------------------------- +Mon Jan 5 09:29:04 CET 2009 - npiggin@suse.de + +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. + +------------------------------------------------------------------- +Mon Jan 5 09:11:14 CET 2009 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Jan 5 08:51:10 CET 2009 - npiggin@suse.de + +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Wed Dec 31 06:09:51 CET 2008 - npiggin@suse.de + +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). + +------------------------------------------------------------------- +Wed Dec 31 05:39:57 CET 2008 - npiggin@suse.de + +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). + +------------------------------------------------------------------- +Mon Dec 29 23:46:15 CET 2008 - jeffm@suse.de + +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. + +------------------------------------------------------------------- +Mon Dec 22 10:56:57 CET 2008 - olh@suse.de + +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) + +------------------------------------------------------------------- +Mon Dec 22 10:41:52 CET 2008 - olh@suse.de + +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) + +------------------------------------------------------------------- +Sat Dec 20 17:02:15 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). + +------------------------------------------------------------------- +Sat Dec 20 11:31:56 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). + +------------------------------------------------------------------- +Fri Dec 19 20:10:09 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Print more info. + +------------------------------------------------------------------- +Fri Dec 19 16:21:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. + +------------------------------------------------------------------- +Fri Dec 19 11:59:08 CET 2008 - jbeulich@novell.com + +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. + +------------------------------------------------------------------- +Fri Dec 19 06:49:55 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. + +------------------------------------------------------------------- +Fri Dec 19 02:01:05 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). + +------------------------------------------------------------------- +Thu Dec 18 21:24:46 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Fixed ordering. + +------------------------------------------------------------------- +Thu Dec 18 21:15:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. + +------------------------------------------------------------------- +Thu Dec 18 19:31:20 CET 2008 - gregkh@suse.de + +- Updated to final 2.6.27.10 release + +------------------------------------------------------------------- +Thu Dec 18 14:38:51 CET 2008 - trenn@suse.de + +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). + +------------------------------------------------------------------- +Thu Dec 18 13:43:01 CET 2008 - trenn@suse.de + +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). + +------------------------------------------------------------------- +Thu Dec 18 10:06:36 CET 2008 - jbeulich@novell.com + +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. + +------------------------------------------------------------------- +Thu Dec 18 03:55:39 CET 2008 - nfbrown@suse.de + +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). + +------------------------------------------------------------------- +Wed Dec 17 16:53:43 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix uninitialized variable + +------------------------------------------------------------------- +Wed Dec 17 15:38:40 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change + +------------------------------------------------------------------- +Wed Dec 17 01:50:24 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. + +------------------------------------------------------------------- +Wed Dec 17 01:22:17 CET 2008 - gregkh@suse.de + +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array + +------------------------------------------------------------------- +Tue Dec 16 23:14:36 CET 2008 - jeffm@suse.de + +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. + +------------------------------------------------------------------- +Tue Dec 16 21:48:08 CET 2008 - mmarek@suse.cz + +- addded symtypes-* files to the RC1 reference kabi + +------------------------------------------------------------------- +Tue Dec 16 19:04:29 CET 2008 - jeffm@suse.de + +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). + +------------------------------------------------------------------- +Tue Dec 16 16:23:06 CET 2008 - hare@suse.de + +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). + +------------------------------------------------------------------- +Tue Dec 16 16:14:20 CET 2008 - hare@suse.de + +- Enable 3270 console (bnc#457039) + +------------------------------------------------------------------- +Tue Dec 16 00:17:08 CET 2008 - rjw@suse.de + +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). + +------------------------------------------------------------------- +Mon Dec 15 23:06:28 CET 2008 - jeffm@suse.de + +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). + +------------------------------------------------------------------- +Mon Dec 15 16:08:19 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). + +------------------------------------------------------------------- +Mon Dec 15 10:17:27 CET 2008 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). + +------------------------------------------------------------------- +Mon Dec 15 08:14:38 CET 2008 - oneukum@suse.de + +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). + +------------------------------------------------------------------- +Sun Dec 14 01:24:41 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow + +------------------------------------------------------------------- +Fri Dec 12 20:23:20 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). + +------------------------------------------------------------------- +Fri Dec 12 18:50:58 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. + +------------------------------------------------------------------- +Fri Dec 12 17:42:35 CET 2008 - jblunck@suse.de + +- .gitignore: Ignore backup files. + +------------------------------------------------------------------- +Fri Dec 12 15:08:44 CET 2008 - hare@suse.de + +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). + +------------------------------------------------------------------- +Fri Dec 12 13:26:56 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). + +------------------------------------------------------------------- +Fri Dec 12 13:24:39 CET 2008 - fseidel@suse.de + +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) + +------------------------------------------------------------------- +Fri Dec 12 12:34:38 CET 2008 - mmarek@suse.cz + +- import SLE11 RC1 reference kabi + +------------------------------------------------------------------- +Fri Dec 12 07:28:39 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. + +------------------------------------------------------------------- +Fri Dec 12 07:18:20 CET 2008 - gregkh@suse.de + +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one + +------------------------------------------------------------------- +Fri Dec 12 07:11:59 CET 2008 - gregkh@suse.de + +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates + +------------------------------------------------------------------- +Thu Dec 11 23:34:54 CET 2008 - gregkh@suse.de + +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. + +------------------------------------------------------------------- +Thu Dec 11 12:44:30 CET 2008 - hare@suse.de + +- Compile in zfcpdump module for S/390 (bnc#446367). + +------------------------------------------------------------------- +Thu Dec 11 11:49:54 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work + +------------------------------------------------------------------- +Thu Dec 11 05:38:44 CET 2008 - teheo@suse.de + +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). + +------------------------------------------------------------------- +Wed Dec 10 23:36:26 CET 2008 - nfbrown@suse.de + +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). + +------------------------------------------------------------------- +Wed Dec 10 19:04:00 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). + +------------------------------------------------------------------- +Wed Dec 10 16:38:13 CET 2008 - jeffm@suse.de + +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). + +------------------------------------------------------------------- +Wed Dec 10 16:01:20 CET 2008 - jeffm@suse.de + +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). + +------------------------------------------------------------------- +Wed Dec 10 15:38:18 CET 2008 - jeffm@suse.de + +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). + +------------------------------------------------------------------- +Wed Dec 10 11:54:33 CET 2008 - mmarek@suse.cz + +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) + +------------------------------------------------------------------- +Wed Dec 10 10:55:28 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. + +------------------------------------------------------------------- +Wed Dec 10 10:46:08 CET 2008 - olh@suse.de + +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) + +------------------------------------------------------------------- +Wed Dec 10 06:03:42 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). + +------------------------------------------------------------------- +Tue Dec 9 20:35:13 CET 2008 - agruen@suse.de + +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). + +------------------------------------------------------------------- +Tue Dec 9 19:44:13 CET 2008 - jeffm@suse.de + +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). + +------------------------------------------------------------------- +Tue Dec 9 19:21:19 CET 2008 - agruen@suse.de + +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). + +------------------------------------------------------------------- +Tue Dec 9 13:26:34 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). + +------------------------------------------------------------------- +Tue Dec 9 12:25:26 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules + +------------------------------------------------------------------- +Tue Dec 9 10:41:57 CET 2008 - nfbrown@suse.de + +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). + +------------------------------------------------------------------- +Mon Dec 8 23:10:23 CET 2008 - rjw@suse.de + +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). + +------------------------------------------------------------------- +Mon Dec 8 17:20:40 CET 2008 - olh@suse.de + +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). + +------------------------------------------------------------------- +Mon Dec 8 17:17:16 CET 2008 - trenn@suse.de + +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. + +------------------------------------------------------------------- +Mon Dec 8 17:05:16 CET 2008 - rw@suse.de + +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) + +------------------------------------------------------------------- +Mon Dec 8 16:52:27 CET 2008 - rw@suse.de + +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) + +------------------------------------------------------------------- +Mon Dec 8 16:25:09 CET 2008 - mmarek@suse.cz + +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. + +------------------------------------------------------------------- +Mon Dec 8 14:32:34 CET 2008 - olh@suse.de + +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc + +------------------------------------------------------------------- +Mon Dec 8 14:08:30 CET 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun + +------------------------------------------------------------------- +Mon Dec 8 12:49:33 CET 2008 - jjohansen@suse.de + +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). + +------------------------------------------------------------------- +Mon Dec 8 12:37:13 CET 2008 - olh@suse.de + +- rpm/post.sh: update board detection to use rpmarch instead flavor + +------------------------------------------------------------------- +Mon Dec 8 10:33:13 CET 2008 - hare@suse.de + +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) + +------------------------------------------------------------------- +Mon Dec 8 03:54:35 CET 2008 - tonyj@suse.de + +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. + +------------------------------------------------------------------- +Sat Dec 6 21:59:13 CET 2008 - trenn@suse.de + +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). + +------------------------------------------------------------------- +Sat Dec 6 01:09:26 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Sat Dec 6 00:26:05 CET 2008 - gregkh@suse.de + +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 + +------------------------------------------------------------------- +Fri Dec 5 17:05:44 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-configurable-guest-devices: fix a typo. + +------------------------------------------------------------------- +Fri Dec 5 16:55:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). + +------------------------------------------------------------------- +Fri Dec 5 16:52:52 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). + +------------------------------------------------------------------- +Fri Dec 5 16:19:44 CET 2008 - jbeulich@novell.com + +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). + +------------------------------------------------------------------- +Fri Dec 5 12:38:19 CET 2008 - hare@suse.de + +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. + +------------------------------------------------------------------- +Fri Dec 5 08:11:16 CET 2008 - bphilips@suse.de + +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). + +------------------------------------------------------------------- +Fri Dec 5 07:23:40 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. + +------------------------------------------------------------------- +Fri Dec 5 07:13:17 CET 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. + +------------------------------------------------------------------- +Fri Dec 5 06:54:23 CET 2008 - gregkh@suse.de + +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) + +------------------------------------------------------------------- +Fri Dec 5 02:23:23 CET 2008 - nfbrown@suse.de + +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. + +------------------------------------------------------------------- +Thu Dec 4 19:35:07 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). + +------------------------------------------------------------------- +Thu Dec 4 18:47:17 CET 2008 - gregkh@suse.de + +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). + +------------------------------------------------------------------- +Thu Dec 4 16:37:34 CET 2008 - jack@suse.cz + +- Update config files. + +------------------------------------------------------------------- +Thu Dec 4 16:21:10 CET 2008 - jack@suse.cz + + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. + +------------------------------------------------------------------- +Thu Dec 4 14:56:19 CET 2008 - olh@suse.de + +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). + +------------------------------------------------------------------- +Thu Dec 4 14:41:56 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). + +------------------------------------------------------------------- +Thu Dec 4 14:37:34 CET 2008 - olh@suse.de + +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). + +------------------------------------------------------------------- +Thu Dec 4 14:30:44 CET 2008 - olh@suse.de + +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). + +------------------------------------------------------------------- +Thu Dec 4 14:18:02 CET 2008 - hare@suse.de + +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). + +------------------------------------------------------------------- +Thu Dec 4 12:33:22 CET 2008 - mmarek@suse.cz + +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) + + +------------------------------------------------------------------- +Thu Dec 4 10:42:03 CET 2008 - schwab@suse.de + +- Set CONFIG_IA64_CPE_MIGRATE=m. + +------------------------------------------------------------------- +Thu Dec 4 09:50:21 CET 2008 - jbeulich@novell.com + +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. + +------------------------------------------------------------------- +Thu Dec 4 09:37:35 CET 2008 - mszeredi@suse.de + +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). + +------------------------------------------------------------------- +Thu Dec 4 09:19:55 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). + +------------------------------------------------------------------- +Thu Dec 4 01:06:34 CET 2008 - gregkh@suse.de + +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. + +------------------------------------------------------------------- +Wed Dec 3 23:09:37 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch + +------------------------------------------------------------------- +Wed Dec 3 16:05:26 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. + +------------------------------------------------------------------- +Wed Dec 3 15:43:30 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 14:38:34 CET 2008 - hare@suse.de + +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. + +------------------------------------------------------------------- +Wed Dec 3 13:38:36 CET 2008 - olh@suse.de + +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). + +------------------------------------------------------------------- +Wed Dec 3 10:48:49 CET 2008 - hare@suse.de + +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) + +------------------------------------------------------------------- +Wed Dec 3 10:32:12 CET 2008 - teheo@suse.de + +Patch updated to remove strcmp() on NULL strings. + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Wed Dec 3 09:38:19 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. + +------------------------------------------------------------------- +Wed Dec 3 09:11:31 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). + +------------------------------------------------------------------- +Wed Dec 3 08:41:58 CET 2008 - knikanth@suse.de + +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). + +------------------------------------------------------------------- +Wed Dec 3 08:32:18 CET 2008 - sjayaraman@suse.de + +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. + +------------------------------------------------------------------- +Wed Dec 3 07:51:33 CET 2008 - sjayaraman@suse.de + +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing + +------------------------------------------------------------------- +Tue Dec 2 23:47:14 CET 2008 - jeffm@suse.de + +- scripts/git-create-branch: Helper script to create a new + branch. + +------------------------------------------------------------------- +Tue Dec 2 17:53:44 CET 2008 - mmarek@suse.cz + +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. + +------------------------------------------------------------------- +Tue Dec 2 17:38:41 CET 2008 - mszeredi@suse.de + +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). + +------------------------------------------------------------------- +Tue Dec 2 16:57:59 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). + +------------------------------------------------------------------- +Tue Dec 2 16:28:04 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). + +------------------------------------------------------------------- +Tue Dec 2 14:22:23 CET 2008 - mmarek@suse.cz + +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) + +------------------------------------------------------------------- +Tue Dec 2 14:04:44 CET 2008 - olh@suse.de + +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) + +------------------------------------------------------------------- +Tue Dec 2 13:27:21 CET 2008 - hare@suse.de + +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. + +------------------------------------------------------------------- +Tue Dec 2 08:13:10 CET 2008 - jjolly@suse.de + +- ...and added the patches to the series.conf (bnc#450096) + +------------------------------------------------------------------- +Tue Dec 2 08:03:44 CET 2008 - jjolly@suse.de + +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). + +------------------------------------------------------------------- +Mon Dec 1 20:11:18 CET 2008 - kkeil@suse.de + +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) + +------------------------------------------------------------------- +Mon Dec 1 15:27:45 CET 2008 - mmarek@suse.cz + +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %* contained a newline) + +------------------------------------------------------------------- +Mon Dec 1 14:39:22 CET 2008 - trenn@suse.de + +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). + +------------------------------------------------------------------- +Mon Dec 1 14:00:19 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). + +------------------------------------------------------------------- +Sat Nov 29 21:51:38 CET 2008 - nfbrown@suse.de + +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). + +------------------------------------------------------------------- +Sat Nov 29 14:43:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). + +------------------------------------------------------------------- +Sat Nov 29 11:07:10 CET 2008 - bwalle@suse.de + +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. + +------------------------------------------------------------------- +Fri Nov 28 23:42:21 CET 2008 - trenn@suse.de + +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). + +------------------------------------------------------------------- +Fri Nov 28 18:54:30 CET 2008 - sassmann@suse.de + +- Update config files. + activate ALTIVEC in ps3 config + +------------------------------------------------------------------- +Fri Nov 28 16:22:33 CET 2008 - hare@suse.de + +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). + +------------------------------------------------------------------- +Fri Nov 28 14:54:13 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). + +------------------------------------------------------------------- +Fri Nov 28 08:23:15 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing + +------------------------------------------------------------------- +Fri Nov 28 07:43:14 CET 2008 - olh@suse.de + +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink + +------------------------------------------------------------------- +Fri Nov 28 06:04:47 CET 2008 - teheo@suse.de + +Block layer timer bug fixed. Multipath patch update is just patch +refresh. + +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). + +------------------------------------------------------------------- +Thu Nov 27 16:52:10 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args + +------------------------------------------------------------------- +Thu Nov 27 16:34:48 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 + +------------------------------------------------------------------- +Thu Nov 27 16:10:30 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally + +------------------------------------------------------------------- +Thu Nov 27 15:37:32 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix + +------------------------------------------------------------------- +Thu Nov 27 15:18:32 CET 2008 - olh@suse.de + +- remove last traces of kernel-um handling + +------------------------------------------------------------------- +Thu Nov 27 14:38:31 CET 2008 - hare@suse.de + +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). + +------------------------------------------------------------------- +Thu Nov 27 11:47:43 CET 2008 - olh@suse.de + +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). + +------------------------------------------------------------------- +Thu Nov 27 08:26:03 CET 2008 - olh@suse.de + +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) + +------------------------------------------------------------------- +Thu Nov 27 06:08:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). + +------------------------------------------------------------------- +Wed Nov 26 10:15:02 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %kernel_module_package macro. + +------------------------------------------------------------------- +Wed Nov 26 09:16:44 CET 2008 - hare@suse.de + +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. + +------------------------------------------------------------------- +Wed Nov 26 09:03:55 CET 2008 - hare@suse.de + +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). + +------------------------------------------------------------------- +Tue Nov 25 20:27:19 CET 2008 - mszeredi@suse.de + +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). + +------------------------------------------------------------------- +Tue Nov 25 17:48:50 CET 2008 - sjayaraman@suse.de + +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). + +------------------------------------------------------------------- +Tue Nov 25 16:39:00 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). + +------------------------------------------------------------------- +Tue Nov 25 00:52:41 CET 2008 - jeffm@suse.de + +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). + +------------------------------------------------------------------- +Tue Nov 25 00:02:33 CET 2008 - jeffm@suse.de + +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). + +------------------------------------------------------------------- +Mon Nov 24 22:44:01 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:25:25 CET 2008 - agruen@suse.de + +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). + +------------------------------------------------------------------- +Mon Nov 24 20:18:46 CET 2008 - agruen@suse.de + +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). + +------------------------------------------------------------------- +Mon Nov 24 20:15:57 CET 2008 - agruen@suse.de + +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. + +------------------------------------------------------------------- +Mon Nov 24 17:00:47 CET 2008 - ghaskins@suse.de + +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). + +------------------------------------------------------------------- +Mon Nov 24 16:57:27 CET 2008 - mmarek@suse.cz + +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. + +------------------------------------------------------------------- +Mon Nov 24 11:55:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. + +------------------------------------------------------------------- +Sun Nov 23 01:02:08 CET 2008 - trenn@suse.de + +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). + +------------------------------------------------------------------- +Sat Nov 22 20:00:50 CET 2008 - olh@suse.de + +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) + +------------------------------------------------------------------- +Sat Nov 22 00:03:11 CET 2008 - rjw@suse.de + +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). + +------------------------------------------------------------------- +Fri Nov 21 20:17:09 CET 2008 - agruen@suse.de + +- config/x86_64/maxcpus: Delete. + +------------------------------------------------------------------- +Fri Nov 21 20:06:08 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: s/CVS/GIT/ + +------------------------------------------------------------------- +Fri Nov 21 20:04:05 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) + +------------------------------------------------------------------- +Fri Nov 21 20:03:17 CET 2008 - agruen@suse.de + +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. + +------------------------------------------------------------------- +Fri Nov 21 18:13:58 CET 2008 - mmarek@suse.cz + +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl + +------------------------------------------------------------------- +Fri Nov 21 17:06:39 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) + +------------------------------------------------------------------- +Fri Nov 21 16:50:40 CET 2008 - kkeil@suse.de + +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) + +------------------------------------------------------------------- +Fri Nov 21 16:10:08 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). + +------------------------------------------------------------------- +Fri Nov 21 14:24:35 CET 2008 - agruen@suse.de + +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %kernel_module_package macro + for improved cross-distro compatibility. + + Define %kernel_module_package_release as 1 for feature tests. + + Define %kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. + +------------------------------------------------------------------- +Fri Nov 21 13:08:28 CET 2008 - hare@suse.de + +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). + +------------------------------------------------------------------- +Fri Nov 21 12:53:49 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). + +------------------------------------------------------------------- +Fri Nov 21 11:16:25 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. + +------------------------------------------------------------------- +Fri Nov 21 10:44:43 CET 2008 - olh@suse.de + +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) + +------------------------------------------------------------------- +Fri Nov 21 09:52:19 CET 2008 - tiwai@suse.de + +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). + +------------------------------------------------------------------- +Fri Nov 21 09:48:06 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). + +------------------------------------------------------------------- +Fri Nov 21 08:03:16 CET 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. + +------------------------------------------------------------------- +Fri Nov 21 06:52:04 CET 2008 - gregkh@suse.de + +- Refresh patches to apply cleanly after 2.6.27.7 update. + +------------------------------------------------------------------- +Fri Nov 21 06:27:23 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + +------------------------------------------------------------------- +Fri Nov 21 05:19:43 CET 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). + +------------------------------------------------------------------- +Fri Nov 21 02:18:19 CET 2008 - npiggin@suse.de + +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). + +------------------------------------------------------------------- +Thu Nov 20 22:31:36 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). + +------------------------------------------------------------------- +Thu Nov 20 21:41:03 CET 2008 - garloff@suse.de + +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). + +------------------------------------------------------------------- +Thu Nov 20 18:39:16 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). + +------------------------------------------------------------------- +Thu Nov 20 17:23:46 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). + +------------------------------------------------------------------- +Thu Nov 20 17:15:31 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. + +------------------------------------------------------------------- +Thu Nov 20 16:52:46 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) + +------------------------------------------------------------------- +Thu Nov 20 15:40:38 CET 2008 - olh@suse.de + +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver + +------------------------------------------------------------------- +Thu Nov 20 15:30:40 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package + +------------------------------------------------------------------- +Thu Nov 20 15:13:41 CET 2008 - hare@suse.de + +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). + +------------------------------------------------------------------- +Thu Nov 20 14:12:23 CET 2008 - olh@suse.de + +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). + +------------------------------------------------------------------- +Thu Nov 20 13:47:33 CET 2008 - trenn@suse.de + +- Update config files. + Fixed debug build, added dependent config option. + +------------------------------------------------------------------- +Thu Nov 20 13:27:57 CET 2008 - trenn@suse.de + +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + +Differ method to receive processor_id depending whether the processor +got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + +Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). + +------------------------------------------------------------------- +Thu Nov 20 12:01:24 CET 2008 - hare@suse.de + +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. + +------------------------------------------------------------------- +Thu Nov 20 10:35:32 CET 2008 - jjolly@suse.de + +- rpm/kernel-binary.spec.in: Added kernel man package for s390x + +------------------------------------------------------------------- +Thu Nov 20 10:26:01 CET 2008 - olh@suse.de + +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) + +------------------------------------------------------------------- +Thu Nov 20 00:20:44 CET 2008 - rjw@suse.de + +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). + +------------------------------------------------------------------- +Wed Nov 19 17:50:51 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). + +------------------------------------------------------------------- +Wed Nov 19 17:28:00 CET 2008 - trenn@suse.de + +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point + +------------------------------------------------------------------- +Wed Nov 19 14:43:33 CET 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) + +------------------------------------------------------------------- +Wed Nov 19 13:54:44 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) + +------------------------------------------------------------------- +Wed Nov 19 12:05:35 CET 2008 - jkosina@suse.de + +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) + +------------------------------------------------------------------- +Wed Nov 19 09:58:11 CET 2008 - goldwyn@suse.de + +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). + +------------------------------------------------------------------- +Wed Nov 19 09:03:46 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) + +------------------------------------------------------------------- +Wed Nov 19 08:59:11 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) + +------------------------------------------------------------------- +Wed Nov 19 08:49:16 CET 2008 - olh@suse.de + +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) + +------------------------------------------------------------------- +Wed Nov 19 05:40:58 CET 2008 - jjolly@suse.de + +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y + +------------------------------------------------------------------- +Wed Nov 19 01:13:34 CET 2008 - jjolly@suse.de + +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). + +------------------------------------------------------------------- +Wed Nov 19 00:50:27 CET 2008 - jjolly@suse.de + +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). + +------------------------------------------------------------------- +Wed Nov 19 00:32:26 CET 2008 - jjolly@suse.de + +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). + +------------------------------------------------------------------- +Tue Nov 18 20:28:57 CET 2008 - bwalle@suse.de + +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). + +------------------------------------------------------------------- +Tue Nov 18 18:56:51 CET 2008 - jjolly@suse.de + +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. + +------------------------------------------------------------------- +Tue Nov 18 16:53:43 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. + +------------------------------------------------------------------- +Tue Nov 18 15:41:37 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). + +------------------------------------------------------------------- +Tue Nov 18 12:18:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). + +------------------------------------------------------------------- +Tue Nov 18 10:45:31 CET 2008 - sdietrich@suse.de + +RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) + +------------------------------------------------------------------- +Tue Nov 18 09:35:26 CET 2008 - olh@suse.de + +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) + +------------------------------------------------------------------- +Tue Nov 18 08:38:39 CET 2008 - olh@suse.de + +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. + +------------------------------------------------------------------- +Tue Nov 18 08:37:54 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). + +------------------------------------------------------------------- +Tue Nov 18 08:20:26 CET 2008 - jjolly@suse.de + +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). + +------------------------------------------------------------------- +Tue Nov 18 03:43:34 CET 2008 - jjolly@suse.de + +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. + +------------------------------------------------------------------- +Tue Nov 18 01:04:14 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). + +------------------------------------------------------------------- +Mon Nov 17 16:35:13 CET 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. + +------------------------------------------------------------------- +Mon Nov 17 16:16:53 CET 2008 - jeffm@suse.de + +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). + +------------------------------------------------------------------- +Mon Nov 17 12:03:13 CET 2008 - fseidel@suse.de + +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). + +------------------------------------------------------------------- +Sat Nov 15 20:28:00 CET 2008 - rjw@suse.com + +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). + +------------------------------------------------------------------- +Sat Nov 15 19:38:50 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). + +------------------------------------------------------------------- +Sat Nov 15 01:30:22 CET 2008 - gregkh@suse.de + +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). + +------------------------------------------------------------------- +Fri Nov 14 19:18:53 CET 2008 - gregkh@suse.de + +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). + +------------------------------------------------------------------- +Fri Nov 14 16:39:03 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 16:38:14 CET 2008 - hare@suse.de + +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. + +------------------------------------------------------------------- +Fri Nov 14 15:44:54 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). + +------------------------------------------------------------------- +Fri Nov 14 13:03:27 CET 2008 - tiwai@suse.de + +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). + +------------------------------------------------------------------- +Fri Nov 14 08:57:30 CET 2008 - tiwai@suse.de + +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 + +------------------------------------------------------------------- +Fri Nov 14 00:56:42 CET 2008 - agruen@suse.de + +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. + +------------------------------------------------------------------- +Fri Nov 14 00:12:15 CET 2008 - bwalle@suse.de + +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. + +------------------------------------------------------------------- +Thu Nov 13 23:34:27 CET 2008 - gregkh@suse.de + +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). + +------------------------------------------------------------------- +Thu Nov 13 23:17:34 CET 2008 - philips@suse.de + +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. + +------------------------------------------------------------------- +Thu Nov 13 21:46:05 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. + +------------------------------------------------------------------- +Thu Nov 13 21:05:10 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) + +------------------------------------------------------------------- +Thu Nov 13 20:51:11 CET 2008 - gregkh@suse.de + +- refresh patches so that everything applies cleanly. + +------------------------------------------------------------------- +Thu Nov 13 20:33:40 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: + +------------------------------------------------------------------- +Thu Nov 13 19:15:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) + +------------------------------------------------------------------- +Thu Nov 13 15:18:51 CET 2008 - agruen@suse.de + +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. + +------------------------------------------------------------------- +Thu Nov 13 14:35:52 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. + +------------------------------------------------------------------- +Thu Nov 13 11:58:05 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) + +------------------------------------------------------------------- +Thu Nov 13 09:29:41 CET 2008 - olh@suse.de + +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers + +------------------------------------------------------------------- +Wed Nov 12 20:44:23 CET 2008 - bwalle@suse.de + +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. + +------------------------------------------------------------------- +Wed Nov 12 16:29:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). + +------------------------------------------------------------------- +Wed Nov 12 16:23:48 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). + +------------------------------------------------------------------- +Wed Nov 12 14:42:53 CET 2008 - agruen@suse.de + +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). + +------------------------------------------------------------------- +Wed Nov 12 00:11:57 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). + +------------------------------------------------------------------- +Tue Nov 11 23:07:25 CET 2008 - philips@suse.de + +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer + +------------------------------------------------------------------- +Tue Nov 11 22:07:38 CET 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. + +------------------------------------------------------------------- +Tue Nov 11 20:49:11 CET 2008 - tiwai@suse.de + +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 + +------------------------------------------------------------------- +Tue Nov 11 15:15:03 CET 2008 - jblunck@suse.de + +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. + +------------------------------------------------------------------- +Tue Nov 11 13:07:51 CET 2008 - schwab@suse.de + +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. + +------------------------------------------------------------------- +Tue Nov 11 12:21:50 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. + +------------------------------------------------------------------- +Tue Nov 11 11:24:33 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). + +------------------------------------------------------------------- +Tue Nov 11 11:24:04 CET 2008 - teheo@suse.de + +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). + +------------------------------------------------------------------- +Mon Nov 10 22:15:05 CET 2008 - schwab@suse.de + +- config/ppc/ppc64: Disable 64k pages to work around X server bug. + +------------------------------------------------------------------- +Mon Nov 10 20:34:50 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: fix variable assignment in last change + +------------------------------------------------------------------- +Mon Nov 10 15:34:45 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) + +------------------------------------------------------------------- +Mon Nov 10 14:42:44 CET 2008 - olh@suse.de + +- handle arch differences for cpu and kbuild correctly + +------------------------------------------------------------------- +Mon Nov 10 14:06:03 CET 2008 - schwab@suse.de + +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. + +------------------------------------------------------------------- +Mon Nov 10 11:48:42 CET 2008 - mmarek@suse.cz + +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. + +------------------------------------------------------------------- +Mon Nov 10 10:08:10 CET 2008 - sdietrich@suse.de + +- config.conf: Suppress RT configurations. + +------------------------------------------------------------------- +Sun Nov 9 16:11:43 CET 2008 - jeffm@suse.de + +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %symbols. + +------------------------------------------------------------------- +Sat Nov 8 04:58:08 CET 2008 - jeffm@suse.de + +- config.conf: Workaround for kernel-ppc64 on head-ppc. + +------------------------------------------------------------------- +Sat Nov 8 00:56:12 CET 2008 - gregkh@suse.de + +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. + +------------------------------------------------------------------- +Fri Nov 7 19:33:49 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). + +------------------------------------------------------------------- +Fri Nov 7 17:09:26 CET 2008 - gregkh@suse.de + +- disable perfmon support in the -trace kernels as it doesn't build + properly. + +------------------------------------------------------------------- +Fri Nov 7 16:43:40 CET 2008 - schwab@suse.de + +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. + +------------------------------------------------------------------- +Fri Nov 7 15:52:37 CET 2008 - hare@suse.de + +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). + +------------------------------------------------------------------- +Fri Nov 7 15:02:14 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). + +------------------------------------------------------------------- +Fri Nov 7 14:52:40 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). + +------------------------------------------------------------------- +Fri Nov 7 14:38:40 CET 2008 - olh@suse.de + +- Update config files for RT + +------------------------------------------------------------------- +Fri Nov 7 14:34:08 CET 2008 - olh@suse.de + +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused + +------------------------------------------------------------------- +Fri Nov 7 14:03:12 CET 2008 - olh@suse.de + +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc + +------------------------------------------------------------------- +Fri Nov 7 11:38:01 CET 2008 - kkeil@suse.de + +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) + +------------------------------------------------------------------- +Fri Nov 7 11:36:48 CET 2008 - olh@suse.de + +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages + +------------------------------------------------------------------- +Fri Nov 7 11:13:35 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being + +------------------------------------------------------------------- +Fri Nov 7 10:48:07 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). + +------------------------------------------------------------------- +Fri Nov 7 10:24:22 CET 2008 - olh@suse.de + +- rpm/post.sh: reject legacy iSeries again + +------------------------------------------------------------------- +Fri Nov 7 10:12:06 CET 2008 - olh@suse.de + +- build a 32bit and a 64bit vanilla kernel on powerpc + +------------------------------------------------------------------- +Fri Nov 7 08:51:07 CET 2008 - olh@suse.de + +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel + +------------------------------------------------------------------- +Fri Nov 7 08:26:35 CET 2008 - gregkh@suse.de + +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. + +------------------------------------------------------------------- +Fri Nov 7 08:07:10 CET 2008 - olh@suse.de + +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) + +------------------------------------------------------------------- +Fri Nov 7 07:56:00 CET 2008 - jjolly@suse.de + +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). + +------------------------------------------------------------------- +Fri Nov 7 06:32:54 CET 2008 - gregkh@suse.de + +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). + +------------------------------------------------------------------- +Fri Nov 7 05:21:56 CET 2008 - nfbrown@suse.de + +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). + +------------------------------------------------------------------- +Fri Nov 7 04:18:42 CET 2008 - nfbrown@suse.de + +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). + +------------------------------------------------------------------- +Thu Nov 6 21:38:27 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) + +------------------------------------------------------------------- +Thu Nov 6 20:15:19 CET 2008 - gregkh@suse.de + +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) + +------------------------------------------------------------------- +Thu Nov 6 19:17:46 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. + +------------------------------------------------------------------- +Thu Nov 6 18:50:47 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. + +------------------------------------------------------------------- +Thu Nov 6 17:31:25 CET 2008 - jjolly@suse.de + +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). + +------------------------------------------------------------------- +Thu Nov 6 16:11:54 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). + +------------------------------------------------------------------- +Thu Nov 6 15:52:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). + +------------------------------------------------------------------- +Thu Nov 6 15:16:13 CET 2008 - jjolly@suse.de + +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). + +------------------------------------------------------------------- +Thu Nov 6 12:11:01 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + +------------------------------------------------------------------- +Thu Nov 6 11:54:52 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) + +------------------------------------------------------------------- +Thu Nov 6 11:39:00 CET 2008 - olh@suse.de + +- remove unneeded BuildRequires for dtc + +------------------------------------------------------------------- +Thu Nov 6 06:36:15 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) + +------------------------------------------------------------------- +Thu Nov 6 01:54:26 CET 2008 - gregkh@suse.de + +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. + +------------------------------------------------------------------- +Wed Nov 5 17:48:13 CET 2008 - jblunck@suse.de + +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. + +------------------------------------------------------------------- +Wed Nov 5 15:26:49 CET 2008 - teheo@suse.de + +Fix !CONFIG_DMI case. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 14:51:08 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) + +------------------------------------------------------------------- +Wed Nov 5 14:25:30 CET 2008 - agruen@suse.de + +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). + +------------------------------------------------------------------- +Wed Nov 5 14:15:24 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch + +------------------------------------------------------------------- +Wed Nov 5 13:36:02 CET 2008 - agruen@suse.de + +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) + +------------------------------------------------------------------- +Wed Nov 5 12:02:18 CET 2008 - tiwai@suse.de + +Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. + +------------------------------------------------------------------- +Wed Nov 5 09:03:23 CET 2008 - gregkh@suse.de + +- refresh -rt patches to remove fuzz. + +------------------------------------------------------------------- +Wed Nov 5 08:57:59 CET 2008 - teheo@suse.de + +Backport two more device specific workarounds from 2.6.28-rc. + +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. + +------------------------------------------------------------------- +Wed Nov 5 08:57:08 CET 2008 - gregkh@suse.de + +- refresh patches to remove fuzz + +------------------------------------------------------------------- +Wed Nov 5 08:46:21 CET 2008 - teheo@suse.de + +Backport double spin off workaround. + +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). + +------------------------------------------------------------------- +Wed Nov 5 08:29:02 CET 2008 - gregkh@suse.de + +- fix rt tree that was broken by 2.6.27.5-rc1 + +------------------------------------------------------------------- +Wed Nov 5 08:24:23 CET 2008 - olh@suse.de + +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Wed Nov 5 08:12:23 CET 2008 - teheo@suse.de + +Backport sata_via fixes from 2.6.28-rc. + +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). + +------------------------------------------------------------------- +Wed Nov 5 07:58:49 CET 2008 - teheo@suse.de + +Backport laptop table and pci device ID table entries from 2.6.28-rc. + +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. + +------------------------------------------------------------------- +Wed Nov 5 07:06:10 CET 2008 - teheo@suse.de + +Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. + +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). + +------------------------------------------------------------------- +Wed Nov 5 01:18:17 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. + +------------------------------------------------------------------- +Wed Nov 5 00:50:39 CET 2008 - kkeil@suse.de + +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) + +------------------------------------------------------------------- +Wed Nov 5 00:45:17 CET 2008 - kkeil@suse.de + +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) + +------------------------------------------------------------------- +Tue Nov 4 21:51:19 CET 2008 - tonyj@suse.de + +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. + +------------------------------------------------------------------- +Tue Nov 4 20:18:59 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: fix typo + +------------------------------------------------------------------- +Tue Nov 4 20:12:49 CET 2008 - rw@suse.de + +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) + +------------------------------------------------------------------- +Tue Nov 4 19:55:01 CET 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 + +------------------------------------------------------------------- +Tue Nov 4 18:57:52 CET 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update + +------------------------------------------------------------------- +Tue Nov 4 17:06:20 CET 2008 - miklos@szeredi.hu + +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). + +------------------------------------------------------------------- +Tue Nov 4 13:02:01 CET 2008 - hare@suse.de + +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). + +------------------------------------------------------------------- +Tue Nov 4 12:18:53 CET 2008 - sdietrich@suse.de + +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. + +------------------------------------------------------------------- +Tue Nov 4 11:51:36 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). + +------------------------------------------------------------------- +Tue Nov 4 11:17:18 CET 2008 - hare@suse.de + +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). + +------------------------------------------------------------------- +Tue Nov 4 05:05:33 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly. + +------------------------------------------------------------------- +Mon Nov 3 18:09:34 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. + +------------------------------------------------------------------- +Mon Nov 3 17:28:10 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). + +------------------------------------------------------------------- +Mon Nov 3 16:10:49 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. + +------------------------------------------------------------------- +Mon Nov 3 12:13:36 CET 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). + +------------------------------------------------------------------- +Mon Nov 3 11:34:55 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). + +------------------------------------------------------------------- +Mon Nov 3 11:33:26 CET 2008 - teheo@suse.de + +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. + +------------------------------------------------------------------- +Mon Nov 3 10:27:18 CET 2008 - olh@suse.de + +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) + +------------------------------------------------------------------- +Mon Nov 3 09:27:17 CET 2008 - teheo@suse.de + +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. + +------------------------------------------------------------------- +Mon Nov 3 04:46:53 CET 2008 - teheo@suse.de + +BNC reference added. + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). + +------------------------------------------------------------------- +Mon Nov 3 04:42:10 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. + +------------------------------------------------------------------- +Sun Nov 2 06:11:19 CET 2008 - sdietrich@suse.de + +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. + +------------------------------------------------------------------- +Sun Nov 2 05:19:27 CET 2008 - sdietrich@suse.de + +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations + +------------------------------------------------------------------- +Sun Nov 2 01:05:36 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. + +------------------------------------------------------------------- +Sun Nov 2 01:03:00 CET 2008 - sdietrich@suse.de + +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + +------------------------------------------------------------------- +Sun Nov 2 00:12:04 CET 2008 - sdietrich@suse.de + +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) +Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 23:41:00 CET 2008 - sdietrich@suse.de + +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK + +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + +Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + +Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Sat Nov 1 08:32:52 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). + +------------------------------------------------------------------- +Fri Oct 31 18:41:23 CET 2008 - trenn@suse.de + +Fate 304268 and 304266. SGI scir driver (replaces the more intrusive +leds one) and the rather intrusive x86_64 4096 CPU support patches: + +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). + +------------------------------------------------------------------- +Fri Oct 31 17:57:22 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). + +------------------------------------------------------------------- +Fri Oct 31 12:34:44 CET 2008 - hare@suse.de + +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. + +------------------------------------------------------------------- +Fri Oct 31 10:08:17 CET 2008 - bwalle@suse.de + +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). + +------------------------------------------------------------------- +Fri Oct 31 09:04:16 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. + +------------------------------------------------------------------- +Fri Oct 31 08:33:45 CET 2008 - jack@suse.cz + +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). + +------------------------------------------------------------------- +Fri Oct 31 01:28:20 CET 2008 - teheo@suse.de + +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). + +------------------------------------------------------------------- +Thu Oct 30 23:19:43 CET 2008 - trenn@suse.de + +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). + +------------------------------------------------------------------- +Thu Oct 30 16:53:09 CET 2008 - gregkh@suse.de + +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). + +------------------------------------------------------------------- +Thu Oct 30 13:44:43 CET 2008 - oneukum@suse.de + +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). + +------------------------------------------------------------------- +Thu Oct 30 10:17:19 CET 2008 - olh@suse.de + +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) + +------------------------------------------------------------------- +Thu Oct 30 06:02:17 CET 2008 - teheo@suse.de + +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). + +------------------------------------------------------------------- +Wed Oct 29 18:41:36 CET 2008 - sdietrich@suse.de + +Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 29 18:18:37 CET 2008 - gregkh@suse.de + +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp + +------------------------------------------------------------------- +Wed Oct 29 16:53:51 CET 2008 - olh@suse.de + +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) + +------------------------------------------------------------------- +Wed Oct 29 14:26:31 CET 2008 - hare@suse.de + +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) + +------------------------------------------------------------------- +Wed Oct 29 12:46:51 CET 2008 - jbeulich@suse.de + +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. + +------------------------------------------------------------------- +Wed Oct 29 11:49:26 CET 2008 - olh@suse.de + +- build af_packet as a module on powerpc (bnc#433540) + +------------------------------------------------------------------- +Wed Oct 29 11:13:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) + +------------------------------------------------------------------- +Wed Oct 29 09:23:20 CET 2008 - olh@suse.de + +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) + +------------------------------------------------------------------- +Wed Oct 29 09:13:47 CET 2008 - olh@suse.de + +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) + +------------------------------------------------------------------- +Wed Oct 29 00:01:46 CET 2008 - gregkh@suse.de + +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 22:32:29 CET 2008 - jkosina@suse.de + +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). + +------------------------------------------------------------------- +Tue Oct 28 20:42:15 CET 2008 - kkeil@suse.de + +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) + +------------------------------------------------------------------- +Tue Oct 28 18:43:29 CET 2008 - jdelvare@suse.de + +- config/powerpc/*: Fixup configuration files after last change. + +------------------------------------------------------------------- +Tue Oct 28 18:19:34 CET 2008 - jdelvare@suse.de + +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. + +------------------------------------------------------------------- +Tue Oct 28 16:02:47 CET 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. + +------------------------------------------------------------------- +Tue Oct 28 15:47:59 CET 2008 - jdelvare@suse.de + +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. + +------------------------------------------------------------------- +Tue Oct 28 15:40:09 CET 2008 - jdelvare@suse.de + +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. + +------------------------------------------------------------------- +Tue Oct 28 14:45:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 14:38:42 CET 2008 - olh@suse.de + +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) + +------------------------------------------------------------------- +Tue Oct 28 11:50:35 CET 2008 - olh@suse.de + +- update ps3 config, remove unneeded options to reduce vmlinux size + +------------------------------------------------------------------- +Tue Oct 28 07:36:40 CET 2008 - neilb@suse.de + +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). + +------------------------------------------------------------------- +Tue Oct 28 00:05:51 CET 2008 - gregkh@suse.de + +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 23:58:12 CET 2008 - gregkh@suse.de + +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 27 22:50:59 CET 2008 - bwalle@suse.de + +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). + +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + +------------------------------------------------------------------- +Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz + +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division + +------------------------------------------------------------------- +Fri Oct 24 17:14:33 CEST 2008 - jeffm@suse.de + +- Update config files for -rt. + +------------------------------------------------------------------- +Fri Oct 24 17:09:57 CEST 2008 - hare@suse.de + +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. + +------------------------------------------------------------------- +Fri Oct 24 16:49:53 CEST 2008 - olh@suse.de + +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE + +------------------------------------------------------------------- +Fri Oct 24 16:49:41 CEST 2008 - jack@suse.cz + +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). + +------------------------------------------------------------------- +Fri Oct 24 15:53:20 CEST 2008 - kkeil@suse.de + +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) + +------------------------------------------------------------------- +Fri Oct 24 15:51:12 CEST 2008 - jeffm@suse.de + +- Refreshed context for -RT patches so they apply again. + +------------------------------------------------------------------- +Fri Oct 24 15:32:06 CEST 2008 - rw@suse.de + +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) + +------------------------------------------------------------------- +Fri Oct 24 15:13:21 CEST 2008 - hare@suse.de + +- Update config files: Disable FAIL_MAKE_REQUEST. + +------------------------------------------------------------------- +Fri Oct 24 15:11:46 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. + +------------------------------------------------------------------- +Fri Oct 24 14:18:07 CEST 2008 - hare@suse.de + +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update + +------------------------------------------------------------------- +Fri Oct 24 14:07:43 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. + +------------------------------------------------------------------- +Fri Oct 24 14:06:20 CEST 2008 - bwalle@suse.de + +- Obsolete uvcvideo-kmp. + +------------------------------------------------------------------- +Fri Oct 24 12:52:23 CEST 2008 - jbeulich@suse.de + +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). + +------------------------------------------------------------------- +Fri Oct 24 12:24:54 CEST 2008 - jbeulich@suse.de + +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. + +------------------------------------------------------------------- +Fri Oct 24 12:20:01 CEST 2008 - jbeulich@suse.de + +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. + +------------------------------------------------------------------- +Fri Oct 24 12:08:49 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules + + +------------------------------------------------------------------- +Fri Oct 24 11:07:32 CEST 2008 - bwalle@suse.de + +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). + +------------------------------------------------------------------- +Fri Oct 24 10:45:08 CEST 2008 - agruen@suse.de + +- supported.conf: Mark dmapi as supported (by SGI). + +------------------------------------------------------------------- +Fri Oct 24 10:40:29 CEST 2008 - olh@suse.de + +- disable all unsupported drivers in kernel-kdump + +------------------------------------------------------------------- +Fri Oct 24 08:25:47 CEST 2008 - npiggin@suse.de + +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). + +------------------------------------------------------------------- +Fri Oct 24 07:43:02 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc2 + +------------------------------------------------------------------- +Fri Oct 24 07:09:39 CEST 2008 - gregkh@suse.de + +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file + +------------------------------------------------------------------- +Fri Oct 24 07:00:11 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. + +------------------------------------------------------------------- +Fri Oct 24 06:57:57 CEST 2008 - npiggin@suse.de + +- Fix ppc and ps3 configs + +------------------------------------------------------------------- +Fri Oct 24 06:53:13 CEST 2008 - npiggin@suse.de + +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). + +------------------------------------------------------------------- +Fri Oct 24 06:32:10 CEST 2008 - npiggin@suse.de + +- Update config files. Enable cgroups for all archs (bnc#417527) + +------------------------------------------------------------------- +Fri Oct 24 05:57:53 CEST 2008 - npiggin@suse.de + +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz + +------------------------------------------------------------------- +Fri Oct 24 05:35:49 CEST 2008 - gregkh@suse.de + +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. + +------------------------------------------------------------------- +Fri Oct 24 05:34:15 CEST 2008 - gregkh@suse.de + +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). + +------------------------------------------------------------------- +Fri Oct 24 05:07:47 CEST 2008 - gregkh@suse.de + +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. + +------------------------------------------------------------------- +Fri Oct 24 01:12:04 CEST 2008 - gregkh@suse.de + +- clean up all fuzz in patches to get them to apply cleanly. + +------------------------------------------------------------------- +Fri Oct 24 00:57:17 CEST 2008 - gregkh@suse.de + +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 24 00:36:54 CEST 2008 - gregkh@suse.de + +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. + +------------------------------------------------------------------- +Thu Oct 23 23:13:11 CEST 2008 - jeffm@suse.de + +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). + +------------------------------------------------------------------- +Thu Oct 23 15:41:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) + +------------------------------------------------------------------- +Thu Oct 23 15:27:00 CEST 2008 - kkeil@suse.de + +- Update x86 64bit config files to include WAN support (bnc#437692) + +------------------------------------------------------------------- +Thu Oct 23 15:19:58 CEST 2008 - olh@suse.de + +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) + +------------------------------------------------------------------- +Thu Oct 23 14:09:23 CEST 2008 - olh@suse.de + +- update patches.suse/nameif-track-rename.patch + print also application and pid + +------------------------------------------------------------------- +Thu Oct 23 12:16:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). + +------------------------------------------------------------------- +Thu Oct 23 11:32:43 CEST 2008 - olh@suse.de + +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) + +------------------------------------------------------------------- +Thu Oct 23 10:54:19 CEST 2008 - npiggin@suse.de + +- Update config files. + +------------------------------------------------------------------- +Thu Oct 23 09:28:14 CEST 2008 - npiggin@suse.de + +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge + +------------------------------------------------------------------- +Thu Oct 23 00:23:55 CEST 2008 - gregkh@suse.de + +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix + +------------------------------------------------------------------- +Wed Oct 22 21:45:42 CEST 2008 - jeffm@suse.de + +- scripts/vc: Handle unset $EDITOR + +------------------------------------------------------------------- +Wed Oct 22 21:43:25 CEST 2008 - jeffm@suse.de + +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. + +------------------------------------------------------------------- +Wed Oct 22 14:17:15 CEST 2008 - jdelvare@suse.de + +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. + +------------------------------------------------------------------- +Wed Oct 22 11:39:01 CEST 2008 - olh@suse.de + +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) + +------------------------------------------------------------------- +Wed Oct 22 11:16:18 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) + +------------------------------------------------------------------- +Wed Oct 22 08:23:43 CEST 2008 - sassmann@suse.de + +Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. + +------------------------------------------------------------------- +Tue Oct 21 11:46:22 CEST 2008 - sdietrich@suse.de + +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. + +------------------------------------------------------------------- +Tue Oct 21 11:21:00 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. + +------------------------------------------------------------------- +Tue Oct 21 09:59:51 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). + +------------------------------------------------------------------- +Tue Oct 21 07:55:12 CEST 2008 - npiggin@suse.de + +- patches.suse/filp-slab-rcu: Delete. + +------------------------------------------------------------------- +Tue Oct 21 07:00:39 CEST 2008 - sdietrich@suse.de + +USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. +Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. + +------------------------------------------------------------------- +Mon Oct 20 22:02:40 CEST 2008 - gregkh@suse.de + +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. + +------------------------------------------------------------------- +Mon Oct 20 21:33:25 CEST 2008 - bwalle@suse.de + +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). + +------------------------------------------------------------------- +Mon Oct 20 18:21:36 CEST 2008 - gregkh@suse.de + +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). + +------------------------------------------------------------------- +Mon Oct 20 18:16:15 CEST 2008 - gregkh@suse.de + +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) + +------------------------------------------------------------------- +Mon Oct 20 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. + +------------------------------------------------------------------- +Mon Oct 20 16:53:36 CEST 2008 - bwalle@suse.de + +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. + +------------------------------------------------------------------- +Mon Oct 20 16:42:42 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. + +------------------------------------------------------------------- +Mon Oct 20 12:52:08 CEST 2008 - hare@suse.de + +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). + +------------------------------------------------------------------- +Mon Oct 20 10:54:50 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y + +------------------------------------------------------------------- +Mon Oct 20 10:15:36 CEST 2008 - bwalle@suse.de + +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. + +------------------------------------------------------------------- +Mon Oct 20 08:46:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) + +------------------------------------------------------------------- +Sat Oct 18 21:15:52 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.2. + - lots of bugfixes + +------------------------------------------------------------------- +Sat Oct 18 10:11:55 CEST 2008 - tonyj@suse.de + +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors + +------------------------------------------------------------------- +Fri Oct 17 22:24:56 CEST 2008 - jeffm@suse.de + +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). + +------------------------------------------------------------------- +Fri Oct 17 17:49:05 CEST 2008 - kkeil@suse.de + +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) + +------------------------------------------------------------------- +Fri Oct 17 17:42:48 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %ghost so that the file gets removed when + uninstalling the kernel. + +------------------------------------------------------------------- +Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com + +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch + +------------------------------------------------------------------- +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com + +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch + +------------------------------------------------------------------- +Thu Oct 16 23:49:45 CEST 2008 - mfasheh@suse.com + +- ocfs2 dynamic local alloc patches + +------------------------------------------------------------------- +Thu Oct 16 22:38:23 CEST 2008 - jslaby@suse.de + +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). + +------------------------------------------------------------------- +Thu Oct 16 20:10:40 CEST 2008 - ihno@suse.de + +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. + +------------------------------------------------------------------- +Thu Oct 16 12:48:17 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. + +------------------------------------------------------------------- +Thu Oct 16 05:03:49 CEST 2008 - tonyj@suse.de + +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 + +------------------------------------------------------------------- +Thu Oct 16 01:48:04 CEST 2008 - gregkh@suse.de + +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. + +------------------------------------------------------------------- +Wed Oct 15 16:29:57 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) + +------------------------------------------------------------------- +Wed Oct 15 15:59:23 CEST 2008 - mmarek@suse.cz + +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) + + +------------------------------------------------------------------- +Wed Oct 15 11:25:19 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround + +------------------------------------------------------------------- +Wed Oct 15 08:58:57 CEST 2008 - olh@suse.de + +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore + +------------------------------------------------------------------- +Wed Oct 15 07:46:16 CEST 2008 - nfbrown@suse.de + +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). + +------------------------------------------------------------------- +Wed Oct 15 03:36:22 CEST 2008 - tonyj@suse.de + +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT + +------------------------------------------------------------------- +Tue Oct 14 17:29:36 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). + +------------------------------------------------------------------- +Tue Oct 14 16:33:12 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. + +------------------------------------------------------------------- +Tue Oct 14 15:48:20 CEST 2008 - mmarek@suse.cz + +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt + +------------------------------------------------------------------- +Tue Oct 14 15:45:52 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 + +------------------------------------------------------------------- +Tue Oct 14 15:16:38 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). + +------------------------------------------------------------------- +Tue Oct 14 14:04:11 CEST 2008 - npiggin@suse.de + +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). + +------------------------------------------------------------------- +Tue Oct 14 13:19:29 CEST 2008 - sjayaraman@suse.de + +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). + +------------------------------------------------------------------- +Tue Oct 14 10:54:40 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). + +------------------------------------------------------------------- +Tue Oct 14 10:27:19 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. + +------------------------------------------------------------------- +Tue Oct 14 10:09:32 CEST 2008 - jbeulich@novell.com + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. + +------------------------------------------------------------------- +Tue Oct 14 10:08:27 CEST 2008 - olh@suse.de + +- call bootloader_entry without leading /boot/ (bnc#435104) + +------------------------------------------------------------------- +Tue Oct 14 09:44:43 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script + +------------------------------------------------------------------- +Tue Oct 14 09:44:42 CEST 2008 - olh@suse.de + +- disable unused ide_platform driver + +------------------------------------------------------------------- +Tue Oct 14 09:04:59 CEST 2008 - jdelvare@suse.de + +- supported.conf: Remove i2c-core and i2c-piix4 from base. + +------------------------------------------------------------------- +Tue Oct 14 06:27:23 CEST 2008 - gregkh@suse.de + +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. + +------------------------------------------------------------------- +Tue Oct 14 00:59:55 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:30:29 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. + +------------------------------------------------------------------- +Tue Oct 14 00:22:11 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp + +------------------------------------------------------------------- +Tue Oct 14 00:13:30 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp + +------------------------------------------------------------------- +Mon Oct 13 23:44:42 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. + +------------------------------------------------------------------- +Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de + +- refresh all patches (except xen and rt) to apply cleanly + +------------------------------------------------------------------- +Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. + +------------------------------------------------------------------- +Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de + +- put proper Patch-mainline: markings on staging patches + +------------------------------------------------------------------- +Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de + +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. + +------------------------------------------------------------------- +Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de + +- rpm/post.sh: Fix typo that breaks script. + +------------------------------------------------------------------- +Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de + +- disabled staging drivers for -rt trees + +------------------------------------------------------------------- +Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de + +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms + +------------------------------------------------------------------- +Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) + +------------------------------------------------------------------- +Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. + +------------------------------------------------------------------- +Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz + +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. + +------------------------------------------------------------------- +Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de + +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). + +------------------------------------------------------------------- +Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz + +- Update config files (CONFIG_UTRACE for rt flavours). + +------------------------------------------------------------------- +Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. + +------------------------------------------------------------------- +Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz + +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. + +------------------------------------------------------------------- +Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de + +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. + +------------------------------------------------------------------- +Mon Oct 13 08:11:29 CEST 2008 - sjayaraman@suse.de + +- Remove another stale swap-over-nfs patch. + + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. + +------------------------------------------------------------------- +Fri Oct 10 05:56:00 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27 final. + +------------------------------------------------------------------- +Fri Oct 10 05:22:37 CEST 2008 - tonyj@suse.de + +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add + +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch + +------------------------------------------------------------------- +Fri Oct 10 01:40:06 CEST 2008 - mfasheh@suse.com + +- supported.conf: mark kernel/fs/gfs2 unsupported + +------------------------------------------------------------------- +Fri Oct 10 00:13:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues + +------------------------------------------------------------------- +Fri Oct 10 00:02:40 CEST 2008 - jeffm@suse.de + +- patches.fixes/account-reserved-pages: Delete. + +------------------------------------------------------------------- +Thu Oct 9 23:58:14 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. + +------------------------------------------------------------------- +Thu Oct 9 23:57:28 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow + +------------------------------------------------------------------- +Thu Oct 9 22:29:39 CEST 2008 - gregkh@suse.de + +- supported.conf: thermal_sys, not thermal_sysfs. + +------------------------------------------------------------------- +Thu Oct 9 22:25:55 CEST 2008 - jeffm@suse.de + +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. + +------------------------------------------------------------------- +Thu Oct 9 22:24:08 CEST 2008 - jdelvare@suse.de + +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. + +------------------------------------------------------------------- +Thu Oct 9 22:19:53 CEST 2008 - jeffm@suse.de + +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Thu Oct 9 21:53:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:48:49 CEST 2008 - gregkh@suse.de + +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. + +------------------------------------------------------------------- +Thu Oct 9 21:48:33 CEST 2008 - jeffm@suse.de + +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. + +------------------------------------------------------------------- +Thu Oct 9 21:46:26 CEST 2008 - gregkh@suse.de + +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. + +------------------------------------------------------------------- +Thu Oct 9 21:41:02 CEST 2008 - jeffm@suse.de + +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). + +------------------------------------------------------------------- +Thu Oct 9 21:12:19 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). + +------------------------------------------------------------------- +Thu Oct 9 21:07:59 CEST 2008 - trenn@suse.de + +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. + +------------------------------------------------------------------- +Thu Oct 9 20:12:49 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y in vanilla configs. + +------------------------------------------------------------------- +Thu Oct 9 20:02:57 CEST 2008 - jeffm@suse.de + +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. + +------------------------------------------------------------------- +Thu Oct 9 19:31:31 CEST 2008 - jeffm@suse.de + +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. + +------------------------------------------------------------------- +Thu Oct 9 19:07:45 CEST 2008 - carnold@novell.com + +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com + +------------------------------------------------------------------- +Thu Oct 9 19:03:59 CEST 2008 - jeffm@suse.de + +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. + +------------------------------------------------------------------- +Thu Oct 9 18:56:02 CEST 2008 - jdelvare@suse.de + +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. + +------------------------------------------------------------------- +Thu Oct 9 18:55:51 CEST 2008 - gregkh@suse.de + +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. + +------------------------------------------------------------------- +Thu Oct 9 18:53:28 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ + +------------------------------------------------------------------- +Thu Oct 9 18:28:30 CEST 2008 - bwalle@suse.de + +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). + +------------------------------------------------------------------- +Thu Oct 9 18:16:01 CEST 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). + +------------------------------------------------------------------- +Thu Oct 9 18:12:17 CEST 2008 - gregkh@suse.de + +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. + +------------------------------------------------------------------- +Thu Oct 9 18:11:16 CEST 2008 - gregkh@suse.de + +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols + +------------------------------------------------------------------- +Thu Oct 9 18:09:32 CEST 2008 - gregkh@suse.de + +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. + +------------------------------------------------------------------- +Thu Oct 9 18:08:10 CEST 2008 - gregkh@suse.de + +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) + +------------------------------------------------------------------- +Thu Oct 09 17:18:13 CEST 2008 - bwalle@suse.de + +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). + +------------------------------------------------------------------- +Thu Oct 9 17:16:06 CEST 2008 - jdelvare@suse.de + +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. + +------------------------------------------------------------------- +Thu Oct 9 16:33:31 CEST 2008 - mmarek@suse.cz + +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) + +------------------------------------------------------------------- +Thu Oct 09 14:06:22 CEST 2008 - bwalle@suse.de + +- Update KDB to v4.4-2.6.27-rc8. + +------------------------------------------------------------------- +Thu Oct 9 12:09:10 CEST 2008 - olh@suse.de + +- disable legacy iseries (bnc#433685 - LTC48946) + +------------------------------------------------------------------- +Thu Oct 9 10:49:01 CEST 2008 - olh@suse.de + +- enable battery_pmu on ppc32 + +------------------------------------------------------------------- +Thu Oct 9 10:16:35 CEST 2008 - trenn@suse.de + +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. + +------------------------------------------------------------------- +Thu Oct 9 09:26:32 CEST 2008 - olh@suse.de + +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) + +------------------------------------------------------------------- +Thu Oct 9 01:10:40 CEST 2008 - teheo@suse.de + +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. + +------------------------------------------------------------------- +Thu Oct 9 00:54:46 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). + +------------------------------------------------------------------- +Wed Oct 8 23:04:13 CEST 2008 - carnold@novell.com + +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). + +------------------------------------------------------------------- +Wed Oct 8 22:55:05 CEST 2008 - gregkh@suse.de + +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. + +------------------------------------------------------------------- +Wed Oct 8 19:01:44 CEST 2008 - gregkh@suse.de + +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. + +------------------------------------------------------------------- +Wed Oct 8 18:54:24 CEST 2008 - jeffm@suse.de + +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n + +------------------------------------------------------------------- +Wed Oct 8 17:59:04 CEST 2008 - trenn@suse.de +x2APIC and interrupt remapping enablement. +Xen needs further work to build again. +Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + #303984). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors + +------------------------------------------------------------------- +Wed Oct 8 17:46:08 CEST 2008 - gregkh@suse.de + +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. + +------------------------------------------------------------------- +Wed Oct 8 17:07:32 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch + +------------------------------------------------------------------- +Wed Oct 8 17:07:31 CEST 2008 - sjayaraman@suse.de + +- Remove stale swap-over-nfs patches. + +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. + +------------------------------------------------------------------- +Wed Oct 8 16:30:24 CEST 2008 - agruen@suse.de + +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. + +------------------------------------------------------------------- +Wed Oct 8 16:25:54 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. + +------------------------------------------------------------------- +Wed Oct 8 16:05:45 CEST 2008 - agruen@suse.de + +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. + +------------------------------------------------------------------- +Wed Oct 8 16:02:06 CEST 2008 - sjayaraman@suse.de + +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. + +------------------------------------------------------------------- +Wed Oct 8 15:34:19 CEST 2008 - sjayaraman@suse.de + +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. + +------------------------------------------------------------------- +Wed Oct 08 15:12:57 CEST 2008 - bwalle@suse.de + +- Enable CONFIG_MFD_SM501_GPIO also for RT. + +------------------------------------------------------------------- +Wed Oct 08 14:54:54 CEST 2008 - bwalle@suse.de + +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. + +------------------------------------------------------------------- +Wed Oct 08 14:14:24 CEST 2008 - bwalle@suse.de + +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory + +------------------------------------------------------------------- +Wed Oct 8 14:07:55 CEST 2008 - mmarek@suse.cz + +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd + +------------------------------------------------------------------- +Wed Oct 8 12:08:27 CEST 2008 - hare@suse.de + +- supported.conf: mark igb as supported. + +------------------------------------------------------------------- +Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de + +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. + +------------------------------------------------------------------- +Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de + +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla + +------------------------------------------------------------------- +Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) + +------------------------------------------------------------------- +Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de + +- supported.conf: mark efivars.ko as supported + +------------------------------------------------------------------- +Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de + +- enable yealink driver (bnc#432841) + +------------------------------------------------------------------- +Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de + +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). + +------------------------------------------------------------------- +Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de + +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). + +------------------------------------------------------------------- +Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de + +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). + +------------------------------------------------------------------- +Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de + +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). + +------------------------------------------------------------------- +Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). + +------------------------------------------------------------------- +Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de + +- mark legacy iseries storage as supported + +------------------------------------------------------------------- +Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. + +------------------------------------------------------------------- +Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de + +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. + +------------------------------------------------------------------- +Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). + +------------------------------------------------------------------- +Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de + +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) + +------------------------------------------------------------------- +Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de + +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). + +------------------------------------------------------------------- +Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a + +------------------------------------------------------------------- +Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de + +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) + +------------------------------------------------------------------- +Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de + +- compile windfarm_pm121 into the kernel + +------------------------------------------------------------------- +Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de + +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor + +------------------------------------------------------------------- +Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de + +- mark Cell drivers as supported + +------------------------------------------------------------------- +Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de + +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch + +------------------------------------------------------------------- +Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de + +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. + +------------------------------------------------------------------- +Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de + +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT + +------------------------------------------------------------------- +Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de + +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. + +------------------------------------------------------------------- +Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de + +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. + +------------------------------------------------------------------- +Thu Oct 2 18:07:38 CEST 2008 - schwab@suse.de + +- Don't clean . + +------------------------------------------------------------------- +Thu Oct 2 15:59:26 CEST 2008 - jblunck@suse.de + +- supported.conf: add qeth_l2 and qeth_l3 as supported modules + +------------------------------------------------------------------- +Thu Oct 2 12:31:31 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel + +------------------------------------------------------------------- +Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. + +------------------------------------------------------------------- +Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. + +------------------------------------------------------------------- +Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de + +- enable msi on ppc64 (bnc#430937) + +------------------------------------------------------------------- +Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem + +------------------------------------------------------------------- +Wed Oct 1 09:08:44 CEST 2008 - tiwai@suse.de + +- rpm/kernel-source.spec.in: Fixed missing endif + +------------------------------------------------------------------- +Wed Oct 1 08:36:07 CEST 2008 - tiwai@suse.de + +- Update config files: make floppy module on i386, too + +------------------------------------------------------------------- +Wed Oct 1 08:31:34 CEST 2008 - tiwai@suse.de + +- supported.conf: update sound drivers + +------------------------------------------------------------------- +Wed Oct 1 05:08:35 CEST 2008 - tonyj@suse.de + +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Wed Oct 1 03:00:37 CEST 2008 - agruen@suse.de + +- Update -rt config files. + +------------------------------------------------------------------- +Tue Sep 30 19:46:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch + +------------------------------------------------------------------- +Tue Sep 30 17:17:15 CEST 2008 - jkosina@suse.de + +- additional patches to track down and fix e1000e NVM corruption + +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). + +------------------------------------------------------------------- +Tue Sep 30 14:07:40 CEST 2008 - hare@suse.de + +- Update config files. + +------------------------------------------------------------------- +Tue Sep 30 13:57:30 CEST 2008 - hare@suse.de + +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. + +------------------------------------------------------------------- +Tue Sep 30 13:42:06 CEST 2008 - sassmann@suse.de + +- Update config files: Disabled everything unnecessary in + ps3 config file + +------------------------------------------------------------------- +Tue Sep 30 12:19:39 CEST 2008 - olh@suse.de + +- disable ninja32 and ns87415 pata drivers on ppc64 + +------------------------------------------------------------------- +Tue Sep 30 12:16:52 CEST 2008 - sdietrich@suse.de + +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. + +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. + +------------------------------------------------------------------- +Tue Sep 30 12:15:08 CEST 2008 - olh@suse.de + +- enable ipmi message handler on ppc64 (bnc#430705) + +------------------------------------------------------------------- +Tue Sep 30 10:53:25 CEST 2008 - olh@suse.de + +- create flavor symlinks unconditionally + they do not depend on presence of modules + +------------------------------------------------------------------- +Mon Sep 29 23:39:20 CEST 2008 - agruen@suse.de + +- Update config files after Swap-over-NFS backout. + +------------------------------------------------------------------- +Mon Sep 29 23:06:02 CEST 2008 - agruen@suse.de + +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. + +------------------------------------------------------------------- +Mon Sep 29 22:21:00 CEST 2008 - jkosina@suse.de + +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Mon Sep 29 17:34:11 CEST 2008 - ptesarik@suse.cz + +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. + +------------------------------------------------------------------- +Mon Sep 29 17:15:46 CEST 2008 - schwab@suse.de + +- config/powerpc/vanilla: configure to 64bit. + +------------------------------------------------------------------- +Mon Sep 29 17:00:43 CEST 2008 - schwab@suse.de + +- rpm/functions.sh: remove readlink emulation. + +------------------------------------------------------------------- +Mon Sep 29 16:55:45 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). + +------------------------------------------------------------------- +Mon Sep 29 16:28:18 CEST 2008 - rw@suse.de + +- Update ia64 config files. (bnc#429881) + +------------------------------------------------------------------- +Mon Sep 29 16:06:06 CEST 2008 - jjolly@suse.de + +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) + +------------------------------------------------------------------- +Mon Sep 29 15:49:00 CEST 2008 - jkosina@suse.de + +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum + +------------------------------------------------------------------- +Mon Sep 29 15:29:06 CEST 2008 - agruen@suse.de + +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). + +------------------------------------------------------------------- +Mon Sep 29 13:28:01 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. + +------------------------------------------------------------------- +Mon Sep 29 09:42:32 CEST 2008 - aj@suse.de + +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. + +------------------------------------------------------------------- +Mon Sep 29 09:37:19 CEST 2008 - jbeulich@novell.com + +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. + +------------------------------------------------------------------- +Mon Sep 29 05:13:31 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. + +------------------------------------------------------------------- +Mon Sep 29 04:08:34 CEST 2008 - agruen@suse.de + +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. + +------------------------------------------------------------------- +Sun Sep 28 21:00:13 CEST 2008 - aj@suse.de + +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. + +------------------------------------------------------------------- +Sun Sep 28 13:50:06 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. + +------------------------------------------------------------------- +Sun Sep 28 10:17:15 CEST 2008 - aj@suse.de + +- rpm/kernel-source.spec.in: Do not package .gitignore files. + +------------------------------------------------------------------- +Sun Sep 28 06:03:34 CEST 2008 - agruen@suse.de + +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. + +------------------------------------------------------------------- +Sat Sep 27 19:25:06 CEST 2008 - agruen@suse.de + +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. + +------------------------------------------------------------------- +Sat Sep 27 17:47:33 CEST 2008 - agruen@suse.de + +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. + +------------------------------------------------------------------- +Sat Sep 27 17:24:30 CEST 2008 - agruen@suse.de + +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. + +------------------------------------------------------------------- +Sat Sep 27 06:36:40 CEST 2008 - knikanth@suse.de + +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). + +------------------------------------------------------------------- +Fri Sep 26 23:05:13 CEST 2008 - jeffm@suse.de + +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. + +------------------------------------------------------------------- +Fri Sep 26 23:04:33 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). + +------------------------------------------------------------------- +Fri Sep 26 22:08:24 CEST 2008 - kkeil@suse.de + +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) + +------------------------------------------------------------------- +Fri Sep 26 21:28:13 CEST 2008 - kkeil@suse.de + +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) + +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory + +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi + +------------------------------------------------------------------- +Fri Sep 26 21:26:35 CEST 2008 - kkeil@suse.de + +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) + +------------------------------------------------------------------- +Fri Sep 26 20:54:17 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. + +------------------------------------------------------------------- +Fri Sep 26 20:43:49 CEST 2008 - jeffm@suse.de + +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. + +------------------------------------------------------------------- +Fri Sep 26 20:33:25 CEST 2008 - jeffm@suse.de + +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. + +------------------------------------------------------------------- +Fri Sep 26 19:56:25 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. + +------------------------------------------------------------------- +Fri Sep 26 18:07:30 CEST 2008 - trenn@suse.de + +No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + +Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + +More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. + +------------------------------------------------------------------- +Fri Sep 26 16:15:28 CEST 2008 - jeffm@suse.de + +- Update config files: NFS_SWAP=y + +------------------------------------------------------------------- +Fri Sep 26 15:57:20 CEST 2008 - ptesarik@suse.cz + +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). + +------------------------------------------------------------------- +Fri Sep 26 14:52:13 CEST 2008 - sjayaraman@suse.de + +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h +as both xen and swap-over-nfs want to add some bits to the skbuff structure. + +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. + +------------------------------------------------------------------- +Fri Sep 26 11:43:49 CEST 2008 - ptesarik@suse.cz + +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 + +------------------------------------------------------------------- +Thu Sep 25 16:27:38 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc7 and c/s 676. + +------------------------------------------------------------------- +Thu Sep 25 13:53:36 CEST 2008 - olh@suse.de + +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) + +------------------------------------------------------------------- +Wed Sep 24 16:20:40 CEST 2008 - jblunck@suse.de + +This adds some tracepoint instrumentation taken from the LTTng patch +series. Tracepoints are enabled for kernel-debug and kernel-trace only. I +disabled ftrace for all flavors except kernel-debug and kernel-trace as well. + +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff + +------------------------------------------------------------------- +Tue Sep 23 16:20:18 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch + +------------------------------------------------------------------- +Tue Sep 23 16:18:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. + +------------------------------------------------------------------- +Tue Sep 23 16:17:41 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). + +------------------------------------------------------------------- +Mon Sep 22 17:50:04 CEST 2008 - jeffm@suse.de + +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). + +------------------------------------------------------------------- +Mon Sep 22 17:12:29 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. + +------------------------------------------------------------------- +Mon Sep 22 16:43:43 CEST 2008 - trenn@suse.de + +Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + +Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + + +Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more +consistent across different kernel flavors as suggested on the +kernel list: +- Update config files. + +------------------------------------------------------------------- +Mon Sep 22 09:48:51 CEST 2008 - hare@suse.de + +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. + +------------------------------------------------------------------- +Fri Sep 19 16:46:36 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. + +------------------------------------------------------------------- +Fri Sep 19 06:06:12 CEST 2008 - nfbrown@suse.de + +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). + +------------------------------------------------------------------- +Thu Sep 18 10:42:25 CEST 2008 - jbeulich@novell.com + +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. + +------------------------------------------------------------------- +Thu Sep 18 10:10:01 CEST 2008 - jbeulich@novell.com + +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). + +------------------------------------------------------------------- +Thu Sep 18 09:34:38 CEST 2008 - hare@suse.de + +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules + +------------------------------------------------------------------- +Wed Sep 17 16:09:26 CEST 2008 - jbeulich@novell.com + +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). + +------------------------------------------------------------------- +Wed Sep 17 09:00:30 CEST 2008 - hare@suse.de + +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). + +------------------------------------------------------------------- +Wed Sep 17 08:35:22 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) + +------------------------------------------------------------------- +Tue Sep 16 17:33:16 CEST 2008 - olh@suse.de + +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) + +------------------------------------------------------------------- +Mon Sep 15 18:05:24 CEST 2008 - jkosina@suse.de + +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). + +------------------------------------------------------------------- +Mon Sep 15 15:24:53 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). + +------------------------------------------------------------------- +Mon Sep 15 10:40:01 CEST 2008 - hare@suse.de + +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD + +------------------------------------------------------------------- +Mon Sep 15 10:28:26 CEST 2008 - hare@suse.de + +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. + +------------------------------------------------------------------- +Mon Sep 15 09:45:55 CEST 2008 - sdietrich@suse.de + +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED + +------------------------------------------------------------------- +Mon Sep 15 09:03:13 CEST 2008 - hare@suse.de + +- patches.drivers/block-timeout-handling: Fix typo. + +------------------------------------------------------------------- +Fri Sep 12 19:16:39 CEST 2008 - duwe@suse.de + +- Add LED driver for SGI "UV" systems (FATE#304268) + +------------------------------------------------------------------- +Fri Sep 12 16:32:46 CEST 2008 - hare@suse.de + +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. + +------------------------------------------------------------------- +Fri Sep 12 13:33:21 CEST 2008 - hare@suse.de + +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) + +------------------------------------------------------------------- +Fri Sep 12 12:22:23 CEST 2008 - hare@suse.de + +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). + +------------------------------------------------------------------- +Fri Sep 12 09:56:49 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). + +------------------------------------------------------------------- +Thu Sep 11 22:45:21 CEST 2008 - jack@suse.cz + + Latest ext4 fixes from ext4 patch queue: + +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). + +------------------------------------------------------------------- +Thu Sep 11 21:45:05 CEST 2008 - bwalle@suse.de + +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. + +------------------------------------------------------------------- +Thu Sep 11 15:36:51 CEST 2008 - jslaby@suse.de + +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) + +------------------------------------------------------------------- +Thu Sep 11 15:03:32 CEST 2008 - jeffm@suse.de + +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) + +------------------------------------------------------------------- +Thu Sep 11 14:33:26 CEST 2008 - mfasheh@suse.com + +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch + +------------------------------------------------------------------- +Thu Sep 11 14:30:15 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch + +------------------------------------------------------------------- +Thu Sep 11 13:24:18 CEST 2008 - mfasheh@suse.com + +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch + +------------------------------------------------------------------- +Thu Sep 11 13:19:27 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) + +------------------------------------------------------------------- +Thu Sep 11 13:11:12 CEST 2008 - mfasheh@suse.com + +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) + +------------------------------------------------------------------- +Thu Sep 11 12:48:36 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Sep 11 11:41:27 CEST 2008 - jslaby@suse.de + +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) + +------------------------------------------------------------------- +Wed Sep 10 19:03:33 CEST 2008 - trenn@suse.de + +- Update config files. + Added: CONFIG_PCIEASPM + +------------------------------------------------------------------- +Wed Sep 10 17:18:30 CEST 2008 - kkeil@suse.de + +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) + +------------------------------------------------------------------- +Wed Sep 10 16:22:17 CEST 2008 - hare@suse.de + +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) + +------------------------------------------------------------------- +Wed Sep 10 14:47:37 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. + +------------------------------------------------------------------- +Wed Sep 10 14:15:44 CEST 2008 - trenn@suse.de + +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi + +------------------------------------------------------------------- +Wed Sep 10 14:14:01 CEST 2008 - jeffm@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. + +------------------------------------------------------------------- +Wed Sep 10 14:08:09 CEST 2008 - jeffm@suse.de + +- Update to 2.6.27-rc6. + +------------------------------------------------------------------- +Wed Sep 10 11:50:03 CEST 2008 - jeffm@suse.de + +- supported.conf: Added missing netfilter modules. + +------------------------------------------------------------------- +Wed Sep 10 11:40:34 CEST 2008 - jeffm@suse.de + +- supported.conf: Updated netfilter module names. + +------------------------------------------------------------------- +Wed Sep 10 11:40:16 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: Updated header. + +------------------------------------------------------------------- +Wed Sep 10 11:33:37 CEST 2008 - jkosina@suse.de + +- Update config files: support more than 4 serial ports + (FATE#303314) + +------------------------------------------------------------------- +Wed Sep 10 10:47:23 CEST 2008 - olh@suse.de + +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) + +------------------------------------------------------------------- +Tue Sep 9 14:20:39 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: add Recommends: kerneloops + +------------------------------------------------------------------- +Tue Sep 9 09:55:33 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git10 + +------------------------------------------------------------------- +Mon Sep 8 09:50:29 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git9 + +------------------------------------------------------------------- +Fri Sep 5 13:44:09 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) + +------------------------------------------------------------------- +Fri Sep 5 12:32:06 CEST 2008 - olh@suse.de + +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) + +------------------------------------------------------------------- +Fri Sep 5 12:23:06 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git7 + +------------------------------------------------------------------- +Thu Sep 4 13:04:50 CEST 2008 - olh@suse.de + +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus + +------------------------------------------------------------------- +Thu Sep 4 12:15:06 CEST 2008 - jkosina@suse.de + +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) + +------------------------------------------------------------------- +Thu Sep 4 09:58:46 CEST 2008 - bwalle@suse.de + +- Update KDB patches. Fix build on x86_64-debug. + +------------------------------------------------------------------- +Wed Sep 3 23:52:01 CEST 2008 - jeffm@suse.de + +- mark crc-t10dif as supported + +------------------------------------------------------------------- +Wed Sep 3 17:05:59 CEST 2008 - olh@suse.de + +- mark pata_pdc2027x as supported + +------------------------------------------------------------------- +Wed Sep 3 16:30:50 CEST 2008 - olh@suse.de + +- mark spidernet as supported + +------------------------------------------------------------------- +Wed Sep 3 16:18:23 CEST 2008 - olh@suse.de + +- mark ehea as supported + +------------------------------------------------------------------- +Wed Sep 3 10:44:38 CEST 2008 - trenn@suse.de + +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc + +------------------------------------------------------------------- +Wed Sep 3 10:24:26 CEST 2008 - hare@suse.de + +- supported.conf: Mark virtio modules as supported. + +------------------------------------------------------------------- +Tue Sep 2 13:26:58 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc5 and c/s 651. + +------------------------------------------------------------------- +Tue Sep 2 04:53:12 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) + +------------------------------------------------------------------- +Mon Sep 1 14:03:09 CEST 2008 - agruen@suse.de + +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. + +------------------------------------------------------------------- +Mon Sep 1 11:58:24 CEST 2008 - bwalle@suse.de + +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. + +------------------------------------------------------------------- +Mon Sep 1 11:19:24 CEST 2008 - olh@suse.de + +- Updated to 2.6.27-rc5-git2 + +------------------------------------------------------------------- +Fri Aug 29 22:46:43 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. + +------------------------------------------------------------------- +Fri Aug 29 16:20:49 CEST 2008 - olh@suse.de + +- update message in post.sh to display also the rpm FLAVOR + +------------------------------------------------------------------- +Thu Aug 28 16:04:48 CEST 2008 - olh@suse.de + +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc + +------------------------------------------------------------------- +Thu Aug 28 15:55:28 CEST 2008 - olh@suse.de + +- disable musb, not useful, does not compile + +------------------------------------------------------------------- +Tue Aug 26 18:54:43 CEST 2008 - trenn@suse.de + + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). + +------------------------------------------------------------------- +Mon Aug 25 23:21:01 CEST 2008 - jeffm@suse.de + +- Disabled patches.kernel.org/ia64-asm-nr-irqs + +------------------------------------------------------------------- +Mon Aug 25 22:53:52 CEST 2008 - jeffm@suse.de + +- patches.fixes/pseries-compile-fix: pseries: compile fix. + +------------------------------------------------------------------- +Mon Aug 25 22:49:01 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. + +------------------------------------------------------------------- +Mon Aug 25 21:58:39 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. + +------------------------------------------------------------------- +Mon Aug 25 21:56:47 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 25 21:22:08 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc4. + - Refreshed context. + +------------------------------------------------------------------- +Mon Aug 25 14:30:43 CEST 2008 - trenn@suse.de + +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. + +------------------------------------------------------------------- +Mon Aug 25 13:19:49 CEST 2008 - trenn@suse.de + +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. + +------------------------------------------------------------------- +Mon Aug 25 12:33:32 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 22 17:01:43 CEST 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. + +------------------------------------------------------------------- +Tue Aug 19 20:36:51 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: Delete. + +------------------------------------------------------------------- +Tue Aug 19 16:54:07 CEST 2008 - jeffm@suse.de + +- Removed unused patches. + +------------------------------------------------------------------- +Tue Aug 19 15:04:16 CEST 2008 - tiwai@suse.de + +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) + +------------------------------------------------------------------- +Mon Aug 18 19:47:24 CEST 2008 - schwab@suse.de + +- Update config files. + +------------------------------------------------------------------- +Mon Aug 18 19:45:51 CEST 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Aug 15 20:40:18 CEST 2008 - tiwai@suse.de + +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. + +------------------------------------------------------------------- +Fri Aug 15 18:49:18 CEST 2008 - tiwai@suse.de + +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build + +------------------------------------------------------------------- +Fri Aug 15 18:35:48 CEST 2008 - tiwai@suse.de + +- rpm/kernel-binary.spec.in: fix build without firmware files + +------------------------------------------------------------------- +Fri Aug 15 15:35:05 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. + +------------------------------------------------------------------- +Fri Aug 15 14:28:13 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. + +------------------------------------------------------------------- +Thu Aug 14 22:00:36 CEST 2008 - jeffm@suse.de + +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. + +------------------------------------------------------------------- +Thu Aug 14 21:54:02 CEST 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/firmware-path + +------------------------------------------------------------------- +Thu Aug 14 21:25:29 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. + +------------------------------------------------------------------- +Thu Aug 14 21:16:20 CEST 2008 - jeffm@suse.de + +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n + +------------------------------------------------------------------- +Thu Aug 14 21:15:52 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. + +------------------------------------------------------------------- +Thu Aug 14 21:09:53 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. + +------------------------------------------------------------------- +Thu Aug 14 20:00:23 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. + +------------------------------------------------------------------- +Thu Aug 14 16:43:59 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. + +------------------------------------------------------------------- +Fri Aug 8 16:15:51 CEST 2008 - hare@suse.de + +- Update config files for RT kernel to activate SCSI + device handler. + +------------------------------------------------------------------- +Fri Aug 8 15:14:18 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. + +------------------------------------------------------------------- +Fri Aug 8 13:25:34 CEST 2008 - schwab@suse.de + +- Fix reference to $RPM_BUILD_ROOT in makefiles. + +------------------------------------------------------------------- +Fri Aug 8 12:15:44 CEST 2008 - hare@suse.de + +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). + +------------------------------------------------------------------- +Thu Aug 7 15:53:59 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Aug 6 12:59:59 CEST 2008 - olh@suse.de + +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o + +------------------------------------------------------------------- +Tue Aug 5 21:41:43 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). + +------------------------------------------------------------------- +Tue Aug 5 21:35:11 CEST 2008 - jeffm@suse.de + +- README.BRANCH: Took ownership of 11.1 tree. + +------------------------------------------------------------------- +Tue Aug 5 21:34:11 CEST 2008 - jeffm@suse.de + +- README: Changed w3d links to wiki links. + +------------------------------------------------------------------- +Tue Aug 5 17:03:22 CEST 2008 - ghaskins@suse.de + +Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 16:10:50 CEST 2008 - ghaskins@suse.de + +Added x86_64/rt_trace kernel flavor (based on ftrace) + +- Update config files. +- config.conf: + +------------------------------------------------------------------- +Tue Aug 5 15:27:26 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. + + +------------------------------------------------------------------- +Tue Aug 5 14:20:38 CEST 2008 - ghaskins@suse.de + +Guarded by +RT +- Remove version.patch to stop build breakage + +------------------------------------------------------------------- +Tue Aug 5 11:43:31 CEST 2008 - jjohansen@suse.de + +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) + +------------------------------------------------------------------- +Tue Aug 5 11:33:17 CEST 2008 - jslaby@suse.de + +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). + +------------------------------------------------------------------- +Mon Aug 4 20:56:15 CEST 2008 - gregkh@suse.de + +- README.BRANCH: added file. + +------------------------------------------------------------------- +Mon Aug 4 13:37:56 CEST 2008 - olh@suse.de + +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present + +------------------------------------------------------------------- +Mon Aug 4 12:42:38 CEST 2008 - jslaby@suse.de + +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). + +------------------------------------------------------------------- +Fri Aug 1 21:45:24 CEST 2008 - ghaskins@suse.de + +PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. + +------------------------------------------------------------------- +Fri Aug 1 16:16:29 CEST 2008 - schwab@suse.de + +- Reenable EFI_RTC. + +------------------------------------------------------------------- +Fri Aug 1 14:12:30 CEST 2008 - trenn@suse.de + +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS + +------------------------------------------------------------------- +Fri Aug 1 13:49:18 CEST 2008 - trenn@suse.de + +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). + +------------------------------------------------------------------- +Fri Aug 1 13:42:53 CEST 2008 - sassmann@suse.de + +Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! + +------------------------------------------------------------------- +Thu Jul 31 19:30:14 CEST 2008 - sdietrich@suse.de + +Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + +Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + +Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. + +------------------------------------------------------------------- +Tue Jul 29 17:25:34 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. + +------------------------------------------------------------------- +Tue Jul 29 00:04:40 CEST 2008 - bphilips@suse.de + +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. + +------------------------------------------------------------------- +Fri Jul 25 16:39:22 CEST 2008 - mszeredi@suse.cz + +- supported.conf: Mark fuse as supported. + +------------------------------------------------------------------- +Thu Jul 24 19:26:38 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_MARKERS + +------------------------------------------------------------------- +Thu Jul 24 19:21:20 CEST 2008 - gregkh@suse.de + +- Enable CONFIG_SECURITY_SELINUX + +------------------------------------------------------------------- +Thu Jul 24 14:53:34 CEST 2008 - agruen@suse.de + +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). + +------------------------------------------------------------------- +Fri Jul 18 10:33:14 CEST 2008 - hare@suse.de + +- Update config files for S/390. + +------------------------------------------------------------------- +Thu Jul 17 22:55:40 CEST 2008 - bwalle@suse.de + +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO + +------------------------------------------------------------------- +Thu Jul 17 18:33:20 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. + +------------------------------------------------------------------- +Thu Jul 17 17:48:49 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. + +------------------------------------------------------------------- +Thu Jul 17 15:49:45 CEST 2008 - jbeulich@novell.com + +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Thu Jul 17 13:35:29 CEST 2008 - jbeulich@novell.com + +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. + +------------------------------------------------------------------- +Mon Jul 14 18:51:03 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. + +------------------------------------------------------------------- +Mon Jul 14 18:19:08 CEST 2008 - olh@suse.de + +- disable unused fsl-diu-fb driver + +------------------------------------------------------------------- +Mon Jul 14 17:23:40 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-final. + +------------------------------------------------------------------- +Mon Jul 14 11:24:42 CEST 2008 - bwalle@suse.de + +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). + +------------------------------------------------------------------- +Mon Jul 14 08:04:25 CEST 2008 - rgoldwyn@suse.de + +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl + +------------------------------------------------------------------- +Fri Jul 11 19:22:27 CEST 2008 - jeffm@suse.de + +- Updated squashfs to v3.3. (bnc#373285) + +------------------------------------------------------------------- +Thu Jul 10 20:36:45 CEST 2008 - jeffm@suse.de + +- Update config files: Enable raw devices on s390. + +------------------------------------------------------------------- +Thu Jul 10 15:59:36 CEST 2008 - jack@suse.cz + +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). + +------------------------------------------------------------------- +Thu Jul 10 01:12:00 CEST 2008 - jeffm@suse.de + +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. + +------------------------------------------------------------------- +Wed Jul 9 22:59:14 CEST 2008 - jeffm@suse.de + +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. + +------------------------------------------------------------------- +Wed Jul 9 22:58:15 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. + +------------------------------------------------------------------- +Wed Jul 9 22:49:38 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). + +------------------------------------------------------------------- +Wed Jul 9 22:11:34 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Wed Jul 9 18:00:11 CEST 2008 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). + +------------------------------------------------------------------- +Wed Jul 9 09:43:49 CEST 2008 - olh@suse.de + +- enable PHYP-assisted OS dump (fate#304131) + +------------------------------------------------------------------- +Mon Jul 7 16:56:43 CEST 2008 - trenn@suse.de + +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. + +------------------------------------------------------------------- +Wed Jul 2 15:02:17 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). + +------------------------------------------------------------------- +Wed Jul 2 11:53:53 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). + +------------------------------------------------------------------- +Wed Jul 2 05:55:16 CEST 2008 - jeffm@suse.de + +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files + +------------------------------------------------------------------- +Fri Jun 27 16:18:50 CEST 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) + +------------------------------------------------------------------- +Thu Jun 26 17:12:27 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) + +------------------------------------------------------------------- +Thu Jun 26 02:39:09 CEST 2008 - sdietrich@suse.de + +- RT: Update config files - enable CONFIG_CGROUPS + +------------------------------------------------------------------- +Thu Jun 26 02:35:07 CEST 2008 - sdietrich@suse.de + +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG + +------------------------------------------------------------------- +Thu Jun 26 00:43:02 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. + +------------------------------------------------------------------- +Wed Jun 25 23:05:22 CEST 2008 - jeffm@suse.de + +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires + +------------------------------------------------------------------- +Wed Jun 25 15:28:14 CEST 2008 - olh@suse.de + +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq + +------------------------------------------------------------------- +Wed Jun 25 14:40:35 CEST 2008 - jdelvare@suse.de + +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. + +------------------------------------------------------------------- +Wed Jun 25 14:19:51 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. + +------------------------------------------------------------------- +Mon Jun 23 17:34:28 CEST 2008 - tiwai@suse.de + +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices + +------------------------------------------------------------------- +Mon Jun 23 16:52:02 CEST 2008 - agruen@suse.de + +- genksyms: add support for checking against a reference ABI. + +------------------------------------------------------------------- +Wed Jun 18 18:31:07 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Fri Jun 13 19:04:21 CEST 2008 - jeffm@suse.de + +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. + +------------------------------------------------------------------- +Fri Jun 13 17:01:21 CEST 2008 - jeffm@suse.de + +- Update config files (vanilla). + +------------------------------------------------------------------- +Fri Jun 13 16:54:57 CEST 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jun 13 16:39:54 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Thu Jun 12 20:58:03 CEST 2008 - sdietrich@suse.de + +- config.conf: Suppress RT until forward-port is complete + +------------------------------------------------------------------- +Thu Jun 12 16:42:18 CEST 2008 - jeffm@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: Delete. + +------------------------------------------------------------------- +Thu Jun 12 10:07:36 CEST 2008 - olh@suse.de + +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch + +------------------------------------------------------------------- +Thu Jun 12 07:52:35 CEST 2008 - jeffm@suse.de + +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. + +------------------------------------------------------------------- +Thu Jun 12 01:44:21 CEST 2008 - sdietrich@suse.de + +Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + +Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + +Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + +Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. + +------------------------------------------------------------------- +Wed Jun 11 22:23:24 CEST 2008 - agruen@suse.de + +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. + +------------------------------------------------------------------- +Wed Jun 11 21:50:14 CEST 2008 - agruen@suse.de + +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. + +------------------------------------------------------------------- +Wed Jun 11 19:53:13 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. + +------------------------------------------------------------------- +Wed Jun 11 19:45:26 CEST 2008 - gregkh@suse.de + +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. + +------------------------------------------------------------------- +Wed Jun 11 01:03:17 CEST 2008 - gregkh@suse.de + +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. + +------------------------------------------------------------------- +Mon Jun 9 23:56:14 CEST 2008 - gregkh@suse.de + +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore + +------------------------------------------------------------------- +Mon Jun 9 23:55:21 CEST 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Mon Jun 9 22:51:15 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch + +------------------------------------------------------------------- +Mon Jun 9 21:32:01 CEST 2008 - gregkh@suse.de + +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). + +------------------------------------------------------------------- +Mon Jun 9 17:22:09 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). + +------------------------------------------------------------------- +Mon Jun 9 12:07:02 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). + +------------------------------------------------------------------- +Sat Jun 7 01:51:16 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.5. + - fixes CVE-2008-1673 + +------------------------------------------------------------------- +Fri Jun 6 12:15:17 CEST 2008 - tiwai@suse.de + +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug + +------------------------------------------------------------------- +Thu Jun 5 12:17:55 CEST 2008 - jbeulich@novell.com + +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. + +------------------------------------------------------------------- +Wed Jun 4 13:44:06 CEST 2008 - jblunck@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). + +------------------------------------------------------------------- +Wed Jun 4 13:12:47 CEST 2008 - schwab@suse.de + +- Don't clean asm-offsets.h. + +------------------------------------------------------------------- +Wed Jun 4 11:37:34 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) + +------------------------------------------------------------------- +Wed Jun 4 00:29:39 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) + +------------------------------------------------------------------- +Tue Jun 3 18:56:44 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). + +------------------------------------------------------------------- +Tue Jun 3 17:59:41 CEST 2008 - bphilips@suse.de + +Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. + +------------------------------------------------------------------- +Mon Jun 2 17:20:17 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). + +------------------------------------------------------------------- +Mon Jun 2 17:02:50 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). + +------------------------------------------------------------------- +Mon Jun 2 17:01:02 CEST 2008 - jeffm@suse.de + +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). + +------------------------------------------------------------------- +Mon Jun 2 12:26:25 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). + +------------------------------------------------------------------- +Mon Jun 2 12:07:08 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). + +------------------------------------------------------------------- +Sat May 31 08:08:56 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. +Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch +Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch + +------------------------------------------------------------------- +Thu May 29 17:21:04 CEST 2008 - sdietrich@suse.de + +RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). +Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. + +------------------------------------------------------------------- +Thu May 29 15:21:55 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). + +------------------------------------------------------------------- +Thu May 29 12:09:07 CEST 2008 - agruen@suse.de + +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). + +------------------------------------------------------------------- +Thu May 29 10:52:22 CEST 2008 - jbeulich@novell.com + +- supported.conf: Mark 8250_pnp as supported. + +------------------------------------------------------------------- +Wed May 28 16:17:32 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). + +------------------------------------------------------------------- +Wed May 28 11:23:56 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). + +------------------------------------------------------------------- +Mon May 26 15:13:29 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. + +------------------------------------------------------------------- +Mon May 26 13:46:10 CEST 2008 - olh@suse.de + +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) + +------------------------------------------------------------------- +Sun May 25 09:04:28 CEST 2008 - tiwai@suse.de + +- Update config files: forgot to update vanilla kernel configs + +------------------------------------------------------------------- +Sat May 24 18:35:05 CEST 2008 - tiwai@suse.de + +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) + +------------------------------------------------------------------- +Fri May 23 14:01:07 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). + +------------------------------------------------------------------- +Fri May 23 13:59:16 CEST 2008 - sdietrich@suse.de + +RT: Update config files: Disable Group Scheduler + +------------------------------------------------------------------- +Thu May 22 16:32:21 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 10:56:48 CEST 2008 - sdietrich@suse.de + +RT: update config files: Disable SYSFS_DEPRECATED + +------------------------------------------------------------------- +Thu May 22 10:10:53 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. + +------------------------------------------------------------------- +Thu May 22 10:08:13 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). + +------------------------------------------------------------------- +Thu May 22 09:16:14 CEST 2008 - sdietrich@suse.de + +RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. + +------------------------------------------------------------------- +Wed May 21 23:18:22 CEST 2008 - jblunck@suse.de + +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). + +------------------------------------------------------------------- +Wed May 21 09:59:47 CEST 2008 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. + +------------------------------------------------------------------- +Wed May 21 09:00:29 CEST 2008 - oneukum@suse.de + +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) + +------------------------------------------------------------------- +Tue May 20 17:05:20 CEST 2008 - jblunck@suse.de + +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. + +------------------------------------------------------------------- +Tue May 20 14:29:55 CEST 2008 - sdietrich@suse.de + +- Update config files: SLERT compatibility: SYSFS_DEPRECATED + +------------------------------------------------------------------- +Tue May 20 14:12:40 CEST 2008 - sdietrich@suse.de + +RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + +Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + +Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + +Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. + +- Update config files. + +------------------------------------------------------------------- +Mon May 19 17:32:26 CEST 2008 - sdietrich@suse.de + +RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) + +------------------------------------------------------------------- +Mon May 19 16:51:58 CEST 2008 - tiwai@suse.de + +- Update config files (missing for rt*). + +------------------------------------------------------------------- +Mon May 19 16:35:40 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. + +------------------------------------------------------------------- +Mon May 19 14:04:42 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. + +------------------------------------------------------------------- +Mon May 19 13:46:20 CEST 2008 - jbeulich@novell.com + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. + +------------------------------------------------------------------- +Mon May 19 12:41:27 CEST 2008 - sdietrich@suse.de + +RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 11:55:02 CEST 2008 - agruen@suse.de + +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. + +------------------------------------------------------------------- +Mon May 19 09:55:32 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Mon May 19 09:38:42 CEST 2008 - trenn@suse.de + +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. + +------------------------------------------------------------------- +Sun May 18 22:05:26 CEST 2008 - agruen@suse.de + +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. + +------------------------------------------------------------------- +Sun May 18 13:39:06 CEST 2008 - sdietrich@suse.de + +- RT: Update config files. + +------------------------------------------------------------------- +Sun May 18 12:55:58 CEST 2008 - sdietrich@suse.de + +RT: update to 2.6.25.4-rt1 patch queue. + +------------------------------------------------------------------- +Sun May 18 11:37:27 CEST 2008 - sdietrich@suse.de + +RT cleanup: Remove unused/obsolete RT patches. + +------------------------------------------------------------------- +Sun May 18 11:13:48 CEST 2008 - sdietrich@suse.de + +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. + +------------------------------------------------------------------- +Sat May 17 15:10:08 CEST 2008 - sdietrich@suse.de + +Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT + +------------------------------------------------------------------- +Fri May 16 20:42:15 CEST 2008 - gregkh@suse.de + +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. + +------------------------------------------------------------------- +Fri May 16 20:31:36 CEST 2008 - gregkh@suse.de + +- refresh patches due to fuzz + +------------------------------------------------------------------- +Fri May 16 20:27:24 CEST 2008 - gregkh@suse.de + +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). + +------------------------------------------------------------------- +Fri May 16 11:23:14 CEST 2008 - olh@suse.de + +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode + +------------------------------------------------------------------- +Fri May 16 11:05:01 CEST 2008 - trenn@suse.de + +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. + +------------------------------------------------------------------- +Fri May 16 10:52:36 CEST 2008 - jblunck@suse.de + +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts + +------------------------------------------------------------------- +Fri May 16 09:24:17 CEST 2008 - jblunck@suse.de + +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) + +------------------------------------------------------------------- +Thu May 15 17:37:22 CEST 2008 - gregkh@suse.de + +- Update to final version of 2.6.25.4 + +------------------------------------------------------------------- +Thu May 15 16:19:15 CEST 2008 - jblunck@suse.de + +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) + +------------------------------------------------------------------- +Thu May 15 14:23:53 CEST 2008 - olh@suse.de + +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) + +------------------------------------------------------------------- +Wed May 14 19:09:54 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 18:51:50 CEST 2008 - oneukum@suse.de + +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). + +------------------------------------------------------------------- +Wed May 14 15:46:40 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). + +------------------------------------------------------------------- +Tue May 13 23:55:51 CEST 2008 - gregkh@suse.de + +- Update config files for vanilla targets + +------------------------------------------------------------------- +Tue May 13 23:19:07 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.4-rc1 + - lots of bug fixes + +------------------------------------------------------------------- +Tue May 13 00:55:34 CEST 2008 - sdietrich@suse.de + +Cleanup RT: +- patches.rt/*: Delete. + +------------------------------------------------------------------- +Mon May 12 16:49:43 CEST 2008 - jkosina@suse.de + +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). + +------------------------------------------------------------------- +Sat May 10 07:41:34 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) + +------------------------------------------------------------------- +Fri May 9 20:46:17 CEST 2008 - jeffm@suse.de + +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) + +------------------------------------------------------------------- +Fri May 9 12:04:21 CEST 2008 - hare@suse.de + +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. + +------------------------------------------------------------------- +Thu May 8 23:04:48 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). + +------------------------------------------------------------------- +Thu May 8 20:59:42 CEST 2008 - gregkh@suse.de + +- comment out vmware patch as it should no longer be needed + +------------------------------------------------------------------- +Thu May 8 20:43:11 CEST 2008 - gregkh@suse.de + +- rediff patches to apply cleanly. + +------------------------------------------------------------------- +Thu May 8 20:35:09 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs + +------------------------------------------------------------------- +Thu May 8 12:26:19 CEST 2008 - sassmann@suse.de + +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. + +------------------------------------------------------------------- +Wed May 7 18:28:24 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 + +------------------------------------------------------------------- +Tue May 6 23:45:08 CEST 2008 - schwab@suse.de + +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. + +------------------------------------------------------------------- +Mon May 5 13:31:37 CEST 2008 - jack@suse.cz + + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. + +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). + +------------------------------------------------------------------- +Fri May 2 04:54:45 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). + +------------------------------------------------------------------- +Fri May 2 00:16:13 CEST 2008 - gregkh@suse.de + +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes + +------------------------------------------------------------------- +Thu May 1 22:46:16 CEST 2008 - agruen@suse.de + +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). + +------------------------------------------------------------------- +Thu May 1 12:39:42 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). + +------------------------------------------------------------------- +Wed Apr 30 07:50:46 CEST 2008 - gregkh@suse.de + +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) + +------------------------------------------------------------------- +Wed Apr 30 07:02:06 CEST 2008 - gregkh@suse.de + +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. + +------------------------------------------------------------------- +Wed Apr 30 01:25:09 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. + +------------------------------------------------------------------- +Mon Apr 28 16:40:12 CEST 2008 - gregkh@suse.de + +- Update config files. + hopefully the build system is happy now + +------------------------------------------------------------------- +Mon Apr 28 16:27:26 CEST 2008 - gregkh@suse.de + +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. + +------------------------------------------------------------------- +Mon Apr 28 10:12:45 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:51:50 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. + +------------------------------------------------------------------- +Mon Apr 28 09:45:20 CEST 2008 - sdietrich@suse.de + +Cleanup: +Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. + +------------------------------------------------------------------- +Fri Apr 25 14:36:38 MDT 2008 - carnold@novell.com + +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) + +------------------------------------------------------------------- +Fri Apr 25 16:07:38 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 + +------------------------------------------------------------------- +Thu Apr 24 15:18:48 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files + +------------------------------------------------------------------- +Thu Apr 24 14:22:10 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) + +------------------------------------------------------------------- +Thu Apr 24 12:54:41 CEST 2008 - olh@suse.de + +- use bzip2 instead of lzma as rpm compression method for vanilla + +------------------------------------------------------------------- +Thu Apr 24 08:38:53 CEST 2008 - olh@suse.de + +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor + +------------------------------------------------------------------- +Wed Apr 23 17:53:03 CEST 2008 - olh@suse.de + +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property + +------------------------------------------------------------------- +Wed Apr 23 17:27:36 CEST 2008 - tiwai@suse.de + +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs + +------------------------------------------------------------------- +Tue Apr 22 17:25:04 CEST 2008 - jack@suse.cz + +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). + +------------------------------------------------------------------- +Tue Apr 22 15:57:40 CEST 2008 - olh@suse.de + +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 + +------------------------------------------------------------------- +Sat Apr 19 18:45:36 CEST 2008 - schwab@suse.de + +- Add compat handler for PTRACE_GETSIGINFO. + +------------------------------------------------------------------- +Sat Apr 19 12:41:56 CEST 2008 - aj@suse.de + +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. + +------------------------------------------------------------------- +Sat Apr 19 00:34:10 CEST 2008 - jeffm@suse.de + +- Re-synced reiserfs patch set due to broken local repo. + +------------------------------------------------------------------- +Sat Apr 19 00:30:42 CEST 2008 - jeffm@suse.de + +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup + +------------------------------------------------------------------- +Fri Apr 18 23:04:24 CEST 2008 - jjohanse@suse.de + +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) + +------------------------------------------------------------------- +Fri Apr 18 22:53:57 CEST 2008 - jjohanse@suse.de + +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. + +------------------------------------------------------------------- +Thu Apr 17 07:30:52 CEST 2008 - gregkh@suse.de + +- refresh patches to apply without fuzz + +------------------------------------------------------------------- +Thu Apr 17 07:08:43 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-final + +------------------------------------------------------------------- +Wed Apr 16 08:22:25 CEST 2008 - jjohanse@suse.de + +- Update to AppArmor 2.3 patch series + +------------------------------------------------------------------- +Wed Apr 16 03:46:00 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. + +------------------------------------------------------------------- +Tue Apr 15 14:44:02 CEST 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc9 and c/s 517. + +------------------------------------------------------------------- +Sat Apr 12 00:55:29 CEST 2008 - gregkh@suse.de + +- refresh patches to clean up fuzz + +------------------------------------------------------------------- +Sat Apr 12 00:53:00 CEST 2008 - gregkh@suse.de + +- Update config files. + +------------------------------------------------------------------- +Sat Apr 12 00:32:56 CEST 2008 - gregkh@suse.de + +- updat to 2.6.25-rc9 + +------------------------------------------------------------------- +Thu Apr 10 19:30:33 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git8 + +------------------------------------------------------------------- +Tue Apr 8 18:03:50 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git7 + +------------------------------------------------------------------- +Mon Apr 7 19:37:40 CEST 2008 - gregkh@suse.de + +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. + +------------------------------------------------------------------- +Mon Apr 7 19:06:09 CEST 2008 - gregkh@suse.de + +- update to 2.6.25-rc8-git5 + +------------------------------------------------------------------- +Sun Apr 6 21:49:11 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. + +------------------------------------------------------------------- +Sun Apr 6 18:44:27 CEST 2008 - jeffm@suse.de + +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). + +------------------------------------------------------------------- +Thu Apr 3 07:53:24 CEST 2008 - teheo@suse.de + +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). + +------------------------------------------------------------------- +Wed Apr 2 01:39:17 CEST 2008 - gregkh@suse.de + +- Update to 2.6.25-rc8 + +------------------------------------------------------------------- +Tue Apr 1 17:10:42 CEST 2008 - jblunck@suse.de + +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires + +------------------------------------------------------------------- +Mon Mar 31 15:27:39 CEST 2008 - jdelvare@suse.de + +- supported.conf: Add new hwmon drivers, all unsupported. + +------------------------------------------------------------------- +Thu Mar 27 20:31:48 CET 2008 - jeffm@suse.de + +- Fixed up the rest of the reiserfs patch queue. + +------------------------------------------------------------------- +Thu Mar 27 19:21:32 CET 2008 - jeffm@suse.de + +- Updated reiserfs xattr patches. + +------------------------------------------------------------------- +Thu Mar 27 18:53:17 CET 2008 - gregkh@suse.de + +- fix merge error in patches.suse/supported-flag caused by me... + +------------------------------------------------------------------- +Thu Mar 27 18:14:18 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7-git2 + +------------------------------------------------------------------- +Thu Mar 27 18:09:56 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... + +------------------------------------------------------------------- +Sun Mar 23 13:29:25 CET 2008 - teheo@suse.de + +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). + +------------------------------------------------------------------- +Thu Mar 20 22:58:55 CET 2008 - gregkh@suse.de + +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. + +------------------------------------------------------------------- +Thu Mar 20 22:26:39 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 21:36:04 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Thu Mar 20 11:07:49 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). + +------------------------------------------------------------------- +Thu Mar 20 08:47:56 CET 2008 - olh@suse.de + +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support + +------------------------------------------------------------------- +Thu Mar 20 08:40:53 CET 2008 - olh@suse.de + +- disable gianfar network driver and unused freescale drivers + +------------------------------------------------------------------- +Wed Mar 19 20:35:41 CET 2008 - gregkh@suse.de + +- patch refreshes due to version update + +------------------------------------------------------------------- +Wed Mar 19 19:19:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6-git3 +- Update config files. + +------------------------------------------------------------------- +Wed Mar 19 19:06:29 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. + +------------------------------------------------------------------- +Wed Mar 19 16:41:29 CET 2008 - olh@suse.de + +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead + +------------------------------------------------------------------- +Tue Mar 18 18:28:21 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Changed to just match %ix86 + +------------------------------------------------------------------- +Mon Mar 17 23:45:38 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika + +------------------------------------------------------------------- +Mon Mar 17 19:04:09 CET 2008 - agruen@suse.de + +- post.sh: Fix a syntax error when creating the initrd. + +------------------------------------------------------------------- +Mon Mar 17 12:18:20 CET 2008 - jbeulich@novell.com + +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. + +------------------------------------------------------------------- +Sun Mar 16 06:26:30 CET 2008 - jeffm@suse.de + +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) + +------------------------------------------------------------------- +Fri Mar 14 20:03:12 CET 2008 - jeffm@suse.de + +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. + +------------------------------------------------------------------- +Fri Mar 14 16:14:34 CET 2008 - jeffm@suse.de + +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). + +------------------------------------------------------------------- +Fri Mar 14 10:22:18 CET 2008 - agruen@suse.de + +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). + +------------------------------------------------------------------- +Thu Mar 13 17:07:38 CET 2008 - gregkh@suse.de + +- Update to 2.6.25-rc5-git3 + +------------------------------------------------------------------- +Thu Mar 13 15:53:57 CET 2008 - olh@suse.de + +- disable unuses pata platform and ibm newemac driver on powerpc + +------------------------------------------------------------------- +Thu Mar 13 11:18:47 CET 2008 - olh@suse.de + +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen + +------------------------------------------------------------------- +Wed Mar 12 18:56:09 CET 2008 - gregkh@suse.de + +- remove alpha configs as they are no longer used + +------------------------------------------------------------------- +Wed Mar 12 18:25:38 CET 2008 - gregkh@suse.de + +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. + +------------------------------------------------------------------- +Wed Mar 12 18:09:37 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly + +------------------------------------------------------------------- +Wed Mar 12 17:17:13 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5-git2 + +------------------------------------------------------------------- +Wed Mar 12 12:07:50 CET 2008 - sassmann@suse.de + +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev + +------------------------------------------------------------------- +Wed Mar 12 10:24:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. + +------------------------------------------------------------------- +Tue Mar 11 19:02:10 CET 2008 - gregkh@suse.de + +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. + +------------------------------------------------------------------- +Tue Mar 11 18:10:51 CET 2008 - gregkh@suse.de + +- Update to 2.6.26-rc5-git1 +- Update config files. + +------------------------------------------------------------------- +Tue Mar 11 00:34:29 CET 2008 - gregkh@suse.de + +- update to 2.6.25-rc5 + +------------------------------------------------------------------- +Mon Mar 10 12:38:31 CET 2008 - agruen@suse.de + +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. + +------------------------------------------------------------------- +Sun Mar 9 16:58:10 CET 2008 - jeffm@suse.de + +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). + +------------------------------------------------------------------- +Sat Mar 8 14:05:20 CET 2008 - agruen@suse.de + +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). + +------------------------------------------------------------------- +Fri Mar 7 17:52:55 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Thu Mar 6 19:14:44 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). + +------------------------------------------------------------------- +Thu Mar 6 17:46:28 CET 2008 - gregkh@suse.de + +- Update s390 config files. + +------------------------------------------------------------------- +Thu Mar 6 17:30:44 CET 2008 - gregkh@suse.de + +- update to 2.6.24-rc5-git1 + +------------------------------------------------------------------- +Wed Mar 5 20:18:13 CET 2008 - gregkh@suse.de + +- enable CONFIG_GROUP_SCHED + +------------------------------------------------------------------- +Wed Mar 5 20:12:32 CET 2008 - gregkh@suse.de + +- enable CONFIG_HIGH_RES_TIMERS on i386 + +------------------------------------------------------------------- +Wed Mar 5 19:35:37 CET 2008 - gregkh@suse.de + +- enable CONFIG_USB_PERSIST for vanilla config files + +------------------------------------------------------------------- +Wed Mar 5 19:29:20 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want + +------------------------------------------------------------------- +Wed Mar 5 19:01:50 CET 2008 - gregkh@suse.de + +- update the vanilla config files for CONFIG_DEBUG_RODATA + +------------------------------------------------------------------- +Wed Mar 5 18:58:12 CET 2008 - gregkh@suse.de + +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) + +------------------------------------------------------------------- +Wed Mar 5 17:55:41 CET 2008 - gregkh@suse.de + +- Update vanilla config files. + +------------------------------------------------------------------- +Wed Mar 5 17:26:42 CET 2008 - jbeulich@novell.com + +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. + +------------------------------------------------------------------- +Wed Mar 5 17:02:33 CET 2008 - gregkh@suse.de + +- Update tree to 2.6.25-rc4 + +------------------------------------------------------------------- +Wed Mar 5 12:29:48 CET 2008 - fseidel@suse.de + +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) + +------------------------------------------------------------------- +Tue Mar 4 16:38:11 CET 2008 - olh@suse.de + +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c + +------------------------------------------------------------------- +Tue Mar 4 16:08:29 CET 2008 - olh@suse.de + +- enable ext2/3 acl support in ps3 kernel + +------------------------------------------------------------------- +Tue Mar 4 15:33:29 CET 2008 - olh@suse.de + +- Update to 2.6.25-rc3-git5 + +------------------------------------------------------------------- +Tue Mar 4 15:19:22 CET 2008 - olh@suse.de + +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld + +------------------------------------------------------------------- +Mon Mar 3 12:37:03 CET 2008 - lmb@suse.de + +- rpm/kernel-binary.spec.in: Require udev >= 118. + +------------------------------------------------------------------- +Mon Mar 3 11:47:35 CET 2008 - ak@suse.de + +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) + +------------------------------------------------------------------- +Sun Mar 2 22:14:06 CET 2008 - olh@suse.de + +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function + +------------------------------------------------------------------- +Fri Feb 29 19:55:54 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources + +------------------------------------------------------------------- +Thu Feb 28 16:20:06 CET 2008 - olh@suse.de + +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper + +------------------------------------------------------------------- +Thu Feb 28 12:43:16 CET 2008 - olh@suse.de + +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y + +------------------------------------------------------------------- +Wed Feb 27 22:19:45 CET 2008 - jdelvare@suse.de + +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. + +------------------------------------------------------------------- +Wed Feb 27 17:10:04 CET 2008 - trenn@suse.de + +- patches.fixes/acpi_force-fan-active.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 21:57:45 CET 2008 - sdietrich@suse.de + +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. + +------------------------------------------------------------------- +Tue Feb 26 13:37:05 CET 2008 - sassmann@suse.de + +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch + +------------------------------------------------------------------- +Tue Feb 26 00:53:25 CET 2008 - jeffm@suse.de + +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. + +------------------------------------------------------------------- +Tue Feb 26 00:38:27 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc3. + +------------------------------------------------------------------- +Sun Feb 24 09:48:20 CET 2008 - sdietrich@suse.de + +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. + +- Remove scheduler patches already upstream in 2.6.25-rc1 + +------------------------------------------------------------------- +Sat Feb 23 22:14:54 CET 2008 - jeffm@suse.de + +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. + +------------------------------------------------------------------- +Sat Feb 23 19:45:26 CET 2008 - jeffm@suse.de + +- Enabled patches.kernel.org/ps3-lpm-include + +------------------------------------------------------------------- +Sat Feb 23 19:45:22 CET 2008 - jeffm@suse.de + +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:36:49 CET 2008 - jeffm@suse.de + +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. + +------------------------------------------------------------------- +Sat Feb 23 18:25:06 CET 2008 - jeffm@suse.de + +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. + +------------------------------------------------------------------- +Sat Feb 23 07:51:44 CET 2008 - jeffm@suse.de + +- Build fixes for ia64 and i386. + +------------------------------------------------------------------- +Sat Feb 23 00:15:46 CET 2008 - jeffm@suse.de + +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. + +------------------------------------------------------------------- +Fri Feb 22 21:10:57 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: fixed and renabled check + +------------------------------------------------------------------- +Fri Feb 22 18:34:18 CET 2008 - sdietrich@suse.de + +- embargoed-patches: eliminate embargoed patches abuse. + +------------------------------------------------------------------- +Fri Feb 22 16:48:37 CET 2008 - jeffm@suse.de + +- scripts/embargo-filter: Disable check for non-existant patches. + +------------------------------------------------------------------- +Fri Feb 22 15:27:05 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Fri Feb 22 13:10:33 CET 2008 - jbeulich@novell.com + +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. + +------------------------------------------------------------------- +Thu Feb 21 16:41:27 CET 2008 - sdietrich@suse.de + +- Update config files: update RT options for adaptive RT locks + +------------------------------------------------------------------- +Thu Feb 21 15:30:06 CET 2008 - sdietrich@suse.de + +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. + +------------------------------------------------------------------- +Thu Feb 21 09:17:38 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. + +------------------------------------------------------------------- +Wed Feb 20 20:56:32 CET 2008 - ghaskins@suse.de + +- adaptive-locking v20 + +------------------------------------------------------------------- +Wed Feb 20 20:36:00 CET 2008 - ghaskins@suse.de + +- adaptive-locking v19 + +------------------------------------------------------------------- +Wed Feb 20 19:22:20 CET 2008 - jeffm@suse.de + +- Update config files for dmraid45. + +------------------------------------------------------------------- +Wed Feb 20 13:57:56 CET 2008 - bwalle@suse.de + +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 + +------------------------------------------------------------------- +Wed Feb 20 13:17:21 CET 2008 - fseidel@suse.de + +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) + +------------------------------------------------------------------- +Tue Feb 19 21:55:32 CET 2008 - jeffm@suse.de + +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. + +------------------------------------------------------------------- +Fri Feb 15 19:24:24 CET 2008 - sdietrich@suse.de + +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority + +------------------------------------------------------------------- +Fri Feb 15 19:04:25 CET 2008 - sdietrich@suse.de + +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep + +------------------------------------------------------------------- +Thu Feb 14 17:18:40 CET 2008 - jeffm@suse.de + +- Removed unused OCFS2 patches. + +------------------------------------------------------------------- +Thu Feb 14 16:10:31 CET 2008 - jeffm@suse.de + +- Removed old commented out ocfs2 patchset. + +------------------------------------------------------------------- +Thu Feb 14 03:10:06 CET 2008 - teheo@suse.de + +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). + +------------------------------------------------------------------- +Wed Feb 13 22:50:44 CET 2008 - jeffm@suse.de + +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. + +------------------------------------------------------------------- +Wed Feb 13 21:59:37 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Wed Feb 13 21:47:43 CET 2008 - jeffm@suse.de + +- Merged and re-enabled OCFS2 userspace clustering + +------------------------------------------------------------------- +Wed Feb 13 10:41:01 CET 2008 - jdelvare@suse.de + +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. + +------------------------------------------------------------------- +Tue Feb 12 01:59:51 CET 2008 - teheo@suse.de + +Build fix for section mismatch check. + +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Mon Feb 11 08:50:40 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). + +------------------------------------------------------------------- +Fri Feb 8 22:07:58 CET 2008 - gregkh@suse.de + +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. + +------------------------------------------------------------------- +Fri Feb 8 18:41:55 CET 2008 - gregkh@suse.de + +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix + +------------------------------------------------------------------- +Fri Feb 8 18:33:31 CET 2008 - bwalle@suse.de + +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more + +------------------------------------------------------------------- +Fri Feb 8 18:32:21 CET 2008 - bwalle@suse.de + +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. + +------------------------------------------------------------------- +Fri Feb 8 18:10:48 CET 2008 - gregkh@suse.de + +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. + +------------------------------------------------------------------- +Fri Feb 8 15:57:31 CET 2008 - jbeulich@novell.com + +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. + +------------------------------------------------------------------- +Fri Feb 8 11:54:11 CET 2008 - jbenc@suse.cz + +- Update config files: disabled CONFIG_BCM43XX. + +------------------------------------------------------------------- +Wed Feb 6 19:01:22 CET 2008 - jeffm@suse.de + +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c + +------------------------------------------------------------------- +Wed Feb 6 17:30:21 CET 2008 - fseidel@suse.de + +- updated patches.drivers/nozomi.patch: mainline info + +------------------------------------------------------------------- +Wed Feb 6 11:59:23 CET 2008 - sdietrich@suse.de + +- Update config files: RT@1KHz, sched groups & cpusets enabled. + +------------------------------------------------------------------- +Wed Feb 6 09:45:37 CET 2008 - olh@suse.de + +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) + +------------------------------------------------------------------- +Wed Feb 6 00:25:53 CET 2008 - gregkh@suse.de + +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic + +------------------------------------------------------------------- +Tue Feb 5 23:42:17 CET 2008 - oneukum@suse.de + +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change + +------------------------------------------------------------------- +Tue Feb 5 07:39:47 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels + +------------------------------------------------------------------- +Tue Feb 5 00:40:11 CET 2008 - gregkh@suse.de + +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) + +------------------------------------------------------------------- +Thu Jan 31 18:55:04 CET 2008 - sdietrich@suse.de + +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). + +------------------------------------------------------------------- +Thu Jan 31 15:26:24 CET 2008 - jbenc@suse.cz + +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). + +------------------------------------------------------------------- +Thu Jan 31 07:55:15 CET 2008 - sdietrich@suse.de + +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. + +------------------------------------------------------------------- +Wed Jan 30 04:53:53 CET 2008 - sdietrich@suse.de + +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. + +------------------------------------------------------------------- +Tue Jan 29 10:50:27 CET 2008 - olh@suse.de + +- really skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Tue Jan 29 09:15:24 CET 2008 - jbeulich@novell.com + +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Sat Jan 26 13:02:54 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). + +------------------------------------------------------------------- +Sat Jan 26 10:53:48 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot + +------------------------------------------------------------------- +Fri Jan 25 23:33:07 CET 2008 - jeffm@suse.de + +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) + +------------------------------------------------------------------- +Fri Jan 25 18:03:54 CET 2008 - jeffm@suse.de + +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. + +------------------------------------------------------------------- +Fri Jan 25 17:40:39 CET 2008 - olh@suse.de + +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node + +------------------------------------------------------------------- +Fri Jan 25 01:58:43 CET 2008 - gregkh@suse.de + +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) + +------------------------------------------------------------------- +Fri Jan 25 01:48:56 CET 2008 - gregkh@suse.de + +- Update to 2.6.24 + +------------------------------------------------------------------- +Thu Jan 24 22:55:26 CET 2008 - olh@suse.de + +- always skip kernel-ps3 in suse_kernel_module_package rpm macro + +------------------------------------------------------------------- +Thu Jan 24 16:33:25 CET 2008 - sdietrich@suse.de + +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT + +------------------------------------------------------------------- +Tue Jan 22 15:43:40 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-modalias.patch + simplify patch + +------------------------------------------------------------------- +Tue Jan 22 13:05:36 CET 2008 - agruen@suse.de + +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). + +------------------------------------------------------------------- +Tue Jan 22 09:37:13 CET 2008 - sassmann@suse.de + +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh + +------------------------------------------------------------------- +Mon Jan 21 22:46:59 CET 2008 - sdietrich@suse.de + +- Update config files (RT) + +------------------------------------------------------------------- +Mon Jan 21 14:48:45 CET 2008 - sdietrich@suse.de + +- Linux-RT 2.6.24-rc8-rt1 + +------------------------------------------------------------------- +Mon Jan 21 10:45:35 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage + +------------------------------------------------------------------- +Mon Jan 21 08:48:02 CET 2008 - aj@suse.de + +- Remove unused config/s390/rt. + +------------------------------------------------------------------- +Fri Jan 18 23:30:24 CET 2008 - jeffm@suse.de + +- patches.rt/irq-flags-unsigned-long.patch: Delete. + +------------------------------------------------------------------- +Fri Jan 18 23:21:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git2. + +------------------------------------------------------------------- +Fri Jan 18 17:14:28 CET 2008 - jeffm@suse.de + +- Enabled 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Fri Jan 18 13:40:29 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. + +------------------------------------------------------------------- +Fri Jan 18 11:56:54 CET 2008 - jbenc@suse.cz + +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). + +------------------------------------------------------------------- +Fri Jan 18 10:49:25 CET 2008 - olh@suse.de + +- sync powerpc vanilla with default .config to enable libata + +------------------------------------------------------------------- +Fri Jan 18 10:19:43 CET 2008 - olh@suse.de + +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth + +------------------------------------------------------------------- +Thu Jan 17 19:28:39 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8-git1. + +------------------------------------------------------------------- +Wed Jan 16 17:36:48 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc8. + +------------------------------------------------------------------- +Sun Jan 13 16:48:14 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git5. + +------------------------------------------------------------------- +Fri Jan 11 20:34:52 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7-git3. + +------------------------------------------------------------------- +Fri Jan 11 12:33:26 CET 2008 - jbeulich@novell.com + +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. + +------------------------------------------------------------------- +Thu Jan 10 11:53:37 CET 2008 - olh@suse.de + +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika + +------------------------------------------------------------------- +Wed Jan 9 17:52:44 CET 2008 - schwab@suse.de + +- Fix debug package build. + +------------------------------------------------------------------- +Wed Jan 9 17:43:26 CET 2008 - oneukum@suse.de + +- Update config files. CONFIG_USB_SUSPEND default + +------------------------------------------------------------------- +Wed Jan 9 17:05:00 CET 2008 - schwab@suse.de + +- Update kdb patches. + +------------------------------------------------------------------- +Wed Jan 9 13:46:22 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Another try... + +------------------------------------------------------------------- +Wed Jan 9 13:37:17 CET 2008 - jeffm@suse.de + +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) + +------------------------------------------------------------------- +Wed Jan 9 11:36:44 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. + +------------------------------------------------------------------- +Wed Jan 9 09:49:45 CET 2008 - jbeulich@novell.com + +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. + +------------------------------------------------------------------- +Tue Jan 8 21:29:36 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. + +------------------------------------------------------------------- +Tue Jan 8 21:23:05 CET 2008 - jeffm@suse.de + +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). + +------------------------------------------------------------------- +Tue Jan 8 16:50:53 CET 2008 - olh@suse.de + +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) + +------------------------------------------------------------------- +Tue Jan 8 14:18:29 CET 2008 - teheo@suse.de + +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). + +------------------------------------------------------------------- +Mon Jan 7 16:47:31 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc7. + +------------------------------------------------------------------- +Mon Jan 7 10:30:30 CET 2008 - teheo@suse.de + +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). + +------------------------------------------------------------------- +Mon Jan 7 10:11:12 CET 2008 - teheo@suse.de + +Bug 347708. port_info for vmw was being assigned to the wrong index. + +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Mon Jan 7 09:39:36 CET 2008 - teheo@suse.de + +As the rest of kernel has caught up now, this one is no longer +necessary. + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 7 09:36:48 CET 2008 - teheo@suse.de + +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). + +------------------------------------------------------------------- +Fri Jan 4 17:09:31 CET 2008 - jeffm@suse.de + +- Update config files for -vanilla. + +------------------------------------------------------------------- +Fri Jan 4 16:49:44 CET 2008 - jeffm@suse.de + +- patches.rt/timer-freq-tweaks.patch: Adjusted context. + +------------------------------------------------------------------- +Fri Jan 4 16:49:21 CET 2008 - jeffm@suse.de + +- Update config files. + +------------------------------------------------------------------- +Fri Jan 4 16:37:59 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git11. + +------------------------------------------------------------------- +Wed Jan 2 17:03:25 CET 2008 - jblunck@suse.de + +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. + +------------------------------------------------------------------- +Tue Jan 1 22:14:32 CET 2008 - jeffm@suse.de + +- Update to 2.6.24-rc6-git7. + +------------------------------------------------------------------- +Tue Jan 1 22:11:46 CET 2008 - jeffm@suse.de + +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. + diff --git a/kernel-xen.spec b/kernel-xen.spec new file mode 100644 index 00000000..a8b06148 --- /dev/null +++ b/kernel-xen.spec @@ -0,0 +1,16444 @@ +# +# spec file for package kernel-xen (Version 3.1.rc8) +# +# 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 3.1-rc8 +%define patchversion 3.1.0-rc8 +%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/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh}) + +%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 -xjf %_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: 3.1.rc8 +%if %using_buildservice +Release: +%else +Release: 0 +%endif +License: GPL v2 only +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 +Provides: %name = %version-%source_rel +%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 +# Do not install p-b and mkinitrd for the install check, the %post script is +# able to handle this +#!BuildIgnore: perl-Bootloader mkinitrd +# Remove some packages that are installed automatically by the build system, +# but are not needed to build the kernel +#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev fillup insserv + +%ifarch ia64 +# arch/ia64/scripts/unwcheck.py +BuildRequires: python +%endif +%ifarch s390 s390x +%if %build_vanilla && 0%{?suse_version} < 1130 +BuildRequires: dwarfextract +%endif +%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 +Source2: source-post.sh +Source3: kernel-source.rpmlintrc +Source8: devel-pre.sh +Source9: devel-post.sh +Source10: preun.sh +Source11: postun.sh +Source12: pre.sh +Source13: post.sh +Source14: series.conf +Source16: guards +Source17: apply-patches +Source21: config.conf +Source23: supported.conf +Source33: check-for-config-changes +Source34: check-supported-list +Source35: group-source-files.pl +Source37: README.SUSE +Source38: README.KSYMS +Source39: config-options.changes.txt +Source40: source-timestamp +Source44: find-provides +Source45: split-modules +Source46: modversions +Source48: macros.kernel-source +Source49: kernel-module-subpackage +Source50: kabi.pl +Source51: mkspec +Source52: kernel-source%variant.changes +Source53: kernel-source.spec.in +Source54: kernel-binary.spec.in +Source55: kernel-syms.spec.in +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 +Source66: configtool.pl +Source67: log.sh +Source68: host-memcpy-hack.h +Source100: config.tar.bz2 +Source101: config.addon.tar.bz2 +Source102: patches.arch.tar.bz2 +Source103: patches.drivers.tar.bz2 +Source104: patches.fixes.tar.bz2 +Source105: patches.rpmify.tar.bz2 +Source106: 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 +Source121: sysctl.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: 106 +NoSource: 107 +NoSource: 108 +NoSource: 109 +NoSource: 110 +NoSource: 111 +NoSource: 112 +NoSource: 113 +NoSource: 120 +NoSource: 121 + +# The following KMPs have been integrated into the kernel package, +# grouped by the last product that contained them. +# sles10 / 10.3 +Obsoletes: iwlwifi-kmp-%build_flavor +Obsoletes: ipw3945-kmp-%build_flavor +# sles10 / 11.0 +Obsoletes: uvcvideo-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 +Obsoletes: iwlagn-2-6-27-kmp-%build_flavor +Obsoletes: msi-wmi-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 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121 + +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 + +%_sourcedir/apply-patches \ +%if %{build_vanilla} + --vanilla \ +%endif + %_sourcedir/series.conf .. $SYMBOLS + +cd %kernel_build_dir + +# Override the timestamp 'uname -v' reports with the source timestamp and +# the commit hash. +date=$(head -n 1 %_sourcedir/source-timestamp) +commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp) +cat > .kernel-binary.spec.buildenv < localversion +fi + +if test -e ../config.addon/%cpu_arch_flavor; then + # FIXME: config.addon doesn't affect the %CONFIG_ macros defined at + # the top of the specfile + %_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config +else + cp ../config/%cpu_arch_flavor .config +fi +%build_src_dir/scripts/config \ + --set-str CONFIG_LOCALVERSION %release_num-%build_flavor \ + --enable CONFIG_SUSE_KERNEL \ +%if 0%{?__debug_package:1} + --enable CONFIG_DEBUG_INFO \ + --disable CONFIG_DEBUG_INFO_REDUCED +%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 + +%build +cd %kernel_build_dir +source .kernel-binary.spec.buildenv + +# create *.symref files in the tree +if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then + %_sourcedir/modversions --unpack . < $_ +fi + +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. +# There are several ways how to define it: +# If you are using the build script: +# build --jobs=N kernel-$flavor.spec +# With plain rpmbuild: +# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec +# To spawn as many jobs as there are cpu cores: +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ +# kernel-$flavor.spec +# You can also set this permanently in ~/.rpmmacros: +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) +%if %CONFIG_KMSG_IDS == "y" + chmod +x ../linux-%srcversion/scripts/kmsg-doc + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 +%else + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y +%endif + + +%install + +# get rid of /usr/lib/rpm/brp-strip-debug +# strip removes too much from the vmlinux ELF binary +export NO_BRP_STRIP_DEBUG=true +export STRIP_KEEP_SYMTAB='*/vmlinux-*' + +# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the +# kernel-devel package is installed. Don't check for stale symlinks +# in the brp-symlink check: +export NO_BRP_STALE_LINK_ERROR=yes + +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 + +add_vmlinux() +{ + 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 + fi +%endif + if $compressed; then + gzip -n -9 %buildroot/$vmlinux + chmod a-x %buildroot/$vmlinux.gz + fi +} + +%if %build_kdump + add_vmlinux + 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 + 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 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" + mkdir -p %buildroot/usr/share/man/man9 + find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' +%endif +%endif +%ifarch sparc64 + add_vmlinux --compressed + image=zImage + cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor + image=vmlinux +%endif + +# 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 -p .config %buildroot/boot/config-%kernelrelease-%build_flavor +sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor +for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do + if [ -f "$file" ]; then + cat "$file" + fi +done | sed '1i # Generated file - do not edit.' >$sysctl_file +if [ ! -s $sysctl_file ]; then + rm $sysctl_file +fi + +%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 -n -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 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 +%endif + + # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor + # so that kernel-devel + 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 -n -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 \ +%if ! %supported_modules_check + -i \ +%endif + -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 +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 -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' + 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. Note that we skip +# /usr/src/linux-obj intentionally, to not accidentally break timestamps there +%fdupes $RPM_BUILD_ROOT/lib + +%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: GPL v2 only +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: GPL v2 only +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: GPL v2 only +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: GPL v2 only +Group: Development/Sources +Provides: multiversion(kernel) +Provides: %name-devel = %version-%source_rel +Requires: kernel-devel%variant = %version-%source_rel +Supplements: packageand(%name:kernel-devel%variant) +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: GPL v2 only +Group: Development/Debug + +%description devel-debuginfo +Debug information for package %name-devel + +%source_timestamp + +%files devel-debuginfo -f vmlinux.debug.files + +%changelog +* Mon Oct 03 2011 jeffm@suse.com +- Update to 3.1-rc8. +- commit 6c33ac4 +* Wed Sep 28 2011 jbeulich@novell.com +- Update Xen config files. +- commit 50fb02f +* Tue Sep 27 2011 eich@suse.de +- Refresh patches.suse/SUSE-bootsplash. + Fix crash when updating boxes: Don't reallocate + picture. +- commit ba0cfdc +* Mon Sep 26 2011 mmarek@suse.cz +- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol + in userspace programs, so that they keep working on older systems. +- rpm/kernel-binary.spec.in: Pass -include + [%%_sourcedir/host-memcpy-hack.h] to the compiler when compiling + userspace programs. +- commit 1de2384 +* Mon Sep 26 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc7 and c/s 1105. +- pass PCI segment information to Xen. +- ACPI: Implement overriding of arbitrary ACPI tables via initrd. +- x86: allow NVS can be accessed by driver. +- commit 7de39e8 +* Mon Sep 26 2011 jeffm@suse.com +- Update to 3.1-rc7. +- commit ee8cc90 +* Wed Sep 21 2011 trenn@suse.de +- Refresh + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch. +-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region. +- commit 0ac4276 +* Wed Sep 21 2011 mhocko@suse.cz +- Provide memory controller swap extension. + Keep the feature disabled by default. Use swapaccount=1 kernel + boot parameter for enabling it. +- commit 000742c +* Wed Sep 21 2011 mhocko@suse.cz +- Update config files. + Clean run_oldconfig.sh run to get configs into sync +- commit c985824 +* Tue Sep 20 2011 trenn@suse.de +- ACPI: Implement overriding of arbitrary ACPI tables via initrd + (none). +- ACPICA: Fix wrongly mapped acpi table header when overriding + via initrd (none). +- ACPICA: Introduce acpi_os_phys_table_override function (none). +- x86: allow NVS can be accessed by driver (none). +- Update config files: + CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y + on i386 and x86_64 flavors +- commit 34bb195 +* Thu Sep 15 2011 jeffm@suse.de +- Update to 3.1-rc6. +- commit 8f0eaba +* Thu Sep 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix unwinding through + interrupt frames, requiring ... +- patches.suse/stack-unwind: ... support for DW_CFA_def_cfa_expression. +- commit 4d917a5 +* Wed Sep 14 2011 agraf@suse.de +- KVM: PPC: Fix incorrect CBE KVM hooks. + There is another issue with KVM_HV and CBE that I only saw building + this tree, so the patch is on its way to the kvm tree now. +- KVM: PPC: Assemble book3s{,_hv}_rmhandlers.S separately + When building KVM HV mode with plenty other options enabled, the build + fails. That's fixed upstream, but 3.1-rc5 doesn't have the patch yet. + So I pulled it in from the kvm tree. +- commit 2be41bd +* Mon Sep 12 2011 jbeulich@novell.com +- Re-enabled patches.arch/x86_64-unwind-annotations. +- commit bfd10a0 +* Mon Sep 12 2011 jbeulich@novell.com +- Refresh patches.arch/x86_64-unwind-annotations. +- Refresh patches.suse/supported-flag. +- commit aa89174 +* Mon Sep 12 2011 jbeulich@novell.com +- Update Xen patches to 3.1-rc5 and c/s 1104. +- mm: frontswap: config and doc files. +- mm: frontswap: core code. +- mm: frontswap: add swap hooks and extend try_to_unuse. +- mm: frontswap: swap data structure changes. +- In HVM guests do not take over the CDROM device (bnc#645893). +- x86: report ACPI-reserved state of PCI MMCONFIG region to + hypervisor. +- config.conf: Re-enable Xen flavors. +- Update config files. +- commit 3692f47 +* Sun Sep 11 2011 agraf@suse.de +- Update config files (disable EHCA on PPC - gcc bug) +- commit 03a0c8c +* Sun Sep 11 2011 agraf@suse.de +- Update config files (enable KVM on PPC64 for OBS) +- commit 00b922d +* Mon Sep 05 2011 mmarek@suse.cz +- Update to 3.1-rc5 from https://github.com/torvalds/linux.git. +- commit 8a211c9 +* Fri Sep 02 2011 ohering@suse.de +- Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ + (fate#311487). +- commit 94054c9 +* Thu Sep 01 2011 ohering@suse.de +- ata_piix: ignore disks in a hyper-v guest. +- Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. +- Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. +- Staging: hv: vmbus: Fix checkpatch warnings. +- Staging: hv: util: kvp: Fix the reported OSVersion string. +- Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). +- Staging: hv: Fix macros, tab errors and warning in + drivers/staging/hv/hv_mouse.c. +- Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get + rid of the PCI signature. +- Staging: hv: Replace struct hv_guid with the uuid type already + defined in Linux. +- Staging: hv: vmbus: Introduce vmbus ID space in struct + hv_driver. +- Staging: hv: blkvsc: Use the newly introduced vmbus ID in the + blockvsc driver. +- Staging: hv: storvsc: Use the newly introduced vmbus ID in + storvsc driver. +- Staging: hv: netvsc: Use the newly introduced vmbus ID in + netvsc driver. +- Staging: hv: mousevsc: Use the newly introduced vmbus ID in + mouse driver. +- Staging: hv: util: Make hv_utils a vmbus device driver. +- Staging: hv: create VMBUS_DEVICE macro and use it. +- Staging: hv: vmbus: Cleanup vmbus_match(). +- Staging: hv: vmbus: Cleanup vmbus_uevent() code. +- Staging: hv: vmbus: Support the notion of id tables in + vmbus_match(). +- Staging: hv: vmbus: Get rid of an unnecessary include line + in vmbus_drv.c. +- Staging: hv: storvsc: Get rid of the DMI signature. +- Staging: hv: netvsc: Get rid of the PCI signature. +- Staging: hv: netvsc: Get rid of the DMI signature in + netvsc_drv.c. +- Staging: hv: util: Get rid of the DMI signature in hv_util.c. +- Staging: hv: util: Get rid of the PCI signature in hv_util.c. +- Staging: hv: fix up driver registering mess. +- Staging: hv: vmbus: Get rid of some unnecessary comments. +- Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. +- Staging: hv: vmbus: Cleanup error handling in hv_init(). +- Staging: hv: vmbus: Get rid of unnecessay comments in + connection.c. +- Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). +- Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). +- Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. +- Staging: hv: vmbus: Get rid of unnecessary comments in + channel.c. +- Staging: hv: vmbus: Change the variable name openInfo to + open_info in channel.c. +- Staging: hv: vmbus: Cleanup error values in ringbuffer.c. +- Staging: hv: vmbus: Cleanup the error return value in + vmbus_recvpacket_raw(). +- Staging: hv: netvsc: Get rid of an unnecessary print statement + in netvsc_probe(). +- Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. +- Staging: hv: storvsc: Cleanup error handling in + storvsc_dev_add(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_channel_init(). +- Staging: hv: storvsc: Cleanup error handling in + storvsc_connect_to_vsp(). +- Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). +- Storage: hv: storvsc: Get rid of some unnecessary DPRINTs + from storvsc.c. +- Staging: hv: storvsc: Fix/cleanup some dated comments in + storvsc.c. +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_host_reset(). +- Staging: hv: storvsc: Cleanup error code returned in + storvsc_probe(). +- Staging: hv: storvsc: Cleanup returned error code in + storvsc_drv_init(). +- Staging: hv: netvsc: Cleanup the returned error code in + netvsc_probe(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_destroy_recv_buf(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_init_recv_buf(). +- Staging: hv: netvsc: Cleanup error returns in + netvsc_connect_vsp(). +- Staging: hv: netvsc: Cleanup error return values in + netvsc_send(). +- Staging: hv: netvsc: Cleanup error return codes in + netvsc_device_add(). +- Staging: hv: netvsc: Cleanup error codes in + rndis_filter_receive(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_query_device(). +- Staging: hv: netvsc: Cleanup error return values in + rndis_filter_set_packet_filter(). +- Staging: hv: netvsc: Cleanup error returns in + rndis_filter_init_device(). +- Staging: hv: netvsc: Cleanup error code in + rndis_filter_device_add(). +- Staging: hv: mouse: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Cleanup to cleanup. +- Staging: hv: netvsc: Change the jump label Exit to exit. +- Staging: hv: mouse: Get rid of the unused PCI signature. +- Staging: hv: hv_mouse: remove deviceinfo_callback function. +- Staging: hv: hv_mouse: remove inputreport_callback function. +- Staging: hv: hv_mouse: remove a forward declaration. +- Staging: hv: hv_mouse: fix up remove() function. +- Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. +- Staging: hv: add driver_data to hv_vmbus_device_id. +- Staging: hv: Add code to parse struct hv_vmbus_device_id table. +- Staging: hv: file2alias: fix up alias creation logic for + hv_vmbus_device_id. +- Staging: hv: storvsc: Inline free_stor_device(). +- Staging: hv: storvsc: Do not aquire an unnecessary reference + on stor_device. +- Staging: hv: storvsc: Rename must_get_stor_device(). +- Staging: hv: storvsc: Rename get_stor_device(). +- Staging: hv: storvsc: Cleanup alloc_stor_device(). +- Staging: hv: storvsc: Introduce state to manage the lifecycle + of stor device. +- Staging: hv: storvsc: Prevent outgoing traffic when stor dev + is being destroyed. +- Staging: hv: storvsc: Get rid of release_stor_device() by + inlining the code. +- Staging: hv: storvsc: Get rid of final_release_stor_device() + by inlining code. +- Staging: hv: storvsc: Get rid of the reference counting in + struct storvsc_device. +- Staging: hv: netvsc: Inline the code for free_net_device(). +- Staging: hv: netvsc: Cleanup alloc_net_device(). +- Staging: hv: netvsc: Introduce state to manage the lifecycle + of net device. +- Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev + is destroyed. +- Staging: hv: netvsc: Get rid of release_outbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of release_inbound_net_device() + by inlining the code. +- Staging: hv: netvsc: Get rid of the refcnt field in struct + netvsc_device. +- Staging: hv: storvsc: Add code to handle IDE devices using + the storvsc driver. +- Staging: hv: storvsc: Handle IDE devices using the storvsc + driver. +- Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is + not used. +- Staging: hv: storvsc: Optimize bounce buffer handling for the + "write" case. +- Staging: hv: storvsc: Optimize the bounce buffer handling in + the "read" case. +- Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of storvsc.c. +- Staging: hv: storvsc: Add the contents of hyperv_storage.h + to storvsc_drv.c. +- Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the + contents of hyperv_storage.h. +- Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY + and MODE_SENSE. +- Staging: hv: storvsc: Fix a typo. +- Staging: hv: storvsc: In case of scsi errors offline the device. +- Staging: hv: storvsc: No need to copy from bounce buffer in + case of a failure. +- Staging: hv: util: Forcefully shutdown when shutdown is + requested. +- Staging: hv: util: Adjust guest time in a process context. +- Staging: hv: vmbus: Check before invoking the channel callback. +- Staging: hv: vmbus: Properly deal with de-registering channel + callback. +- Staging: hv: Fix a bug in vmbus_match(). +- Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining + the code. +- Staging: hv: vmbus: Do not enable auto eoi. +- Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). +- Staging: hv: vmbus: Get rid of some dated/redundant comments. +- Staging: hv: vmbus: Get rid of an unnecessary check in + vmbus_connect(). +- Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. +- Staging: hv: vmbus: Fix checkpatch warnings in connection.c. +- Staging: hv: mousevsc: Fix checkpatch errors and warnings. +- Staging: hv: netvsc: return negative error codes. +- Delete patches.suse/staging-hv-vmbus-init-on-dmi-match.patch. +- commit d77df1b +* Tue Aug 30 2011 jdelvare@suse.de +- Delete patches.fixes/net-tulip-debug-off-by-default.patch. + Obsoleted by upstream commit 0b8f6273eb6fd0611849d6fb432151f04e042434. +- commit bd9ecd2 +* Tue Aug 30 2011 gregkh@suse.de +- supported.conf: xhci-hcd not xhci. Also move it to base so you can boot + off of a USB3 device (bnc#712752) +- commit f6522ba +* Mon Aug 29 2011 jeffm@suse.com +- Re-Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit 626749c +* Mon Aug 29 2011 jeffm@suse.com +- Refresh patches.rpmify/pti-depends-on-x86-pci. +- commit e82bcac +* Mon Aug 29 2011 jeffm@suse.com +- Disabled patches.rpmify/pti-depends-on-x86-pci +- commit 0baba30 +* Mon Aug 29 2011 jeffm@suse.com +- Update to 3.1-rc4. +- commit 68e08b1 +* Wed Aug 24 2011 jeffm@suse.com +- PTI: depends on X86 && PCI. +- commit e975e4b +* Wed Aug 24 2011 jeffm@suse.com +- scsi_dh_alua: always update TPGS status on activate. +- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). +- scsi_dh_alua: Evaluate TPGS setting from inquiry data. +- scsi_dh: Implement match callback function. +- Delete patches.fixes/scsi-dh-alua-retry-UA. +- Delete patches.fixes/scsi-dh-alua-send-stpg. +- commit 58d8073 +* Wed Aug 24 2011 jeffm@suse.com +- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. +- commit 7d43f4b +* Wed Aug 24 2011 jeffm@suse.com +- Refreshed and re-enabled dm-path patches: + - patches.suse/dm-mpath-accept-failed-paths. + - patches.suse/dm-mpath-detach-existing-hardware-handler. +- commit 70cadcd +* Wed Aug 24 2011 jeffm@suse.com +- Update to 3.1-rc3. + - Eliminated 8 patches. + - Xen is disabled. +- commit eccefcc +* Thu Aug 18 2011 eich@suse.de +- * Refresh patches.suse/SUSE-bootsplash. + * Fix bootsplash code for 15bpp framebuffers. + These framebuffers are rare these days, the legendary and still + popular server chipset Radeon ES1000 supports it, though. +- commit f25ce3e +* Sun Aug 14 2011 trenn@suse.de +- Properly destroy pmsr devices: + Refresh patches.xen/xen-x86-msr-on-pcpu. +- commit 934d81a +* Sat Aug 13 2011 gregkh@suse.de +- Update config files, enabling CONFIG_RT2800PCI as requested. +- commit b2f65f0 +* Tue Aug 09 2011 trenn@suse.de +- Update config files: + bnc#674988, change: +-CONFIG_ACPI_CUSTOM_METHOD=m + +# CONFIG_ACPI_CUSTOM_METHOD is not set + for all flavors +- commit f1af972 +* Mon Aug 01 2011 mmarek@suse.cz +- rpm/modversions: Support for new genksyms format with E# tags for enum + constants. +- commit ee6da8c +* Fri Jul 29 2011 jslaby@suse.cz +- tg3: Fix io failures after chip reset (bnc#705962). +- commit c8d864c +* Mon Jul 25 2011 mmarek@suse.cz +- Fix format of patches to apply with series2git: + patches.arch/s390-message-catalog.diff + patches.drivers/input-Add-LED-support-to-Synaptics-device + patches.fixes/kvm-macos.patch + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + patches.fixes/nfs-slot-table-alloc + patches.fixes/oom-warning + patches.fixes/scsi-dh-alua-send-stpg + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature + patches.suse/no-frame-pointer-select + patches.suse/no-partition-scan + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/setuid-dumpable-wrongdir + patches.suse/stack-unwind + patches.suse/supported-flag-enterprise +- commit b5f5212 +* Mon Jul 25 2011 meissner@suse.de +- Powerpc config adjustments + This makes CONFIG_POWER_SUPPLY=y like in the other architectures, + it also disables the EHCA driver as gcc 4.6 currently fails to compile + it correctly. +- commit aa27d23 +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 +* Sat Jul 09 2011 jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- commit e95707d +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f +* Mon Jul 04 2011 tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- commit ac30089 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f +* Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). +- commit b3afb1a +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d +* Fri Jun 17 2011 trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- commit aa3d6e2 +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e +* Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). +- commit 7c243a4 +* Wed Jun 15 2011 jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. +- commit 5fbc5ed +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e +* Fri Jun 10 2011 trenn@suse.de +- Update Suresh's patchset to version 3: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c +* Wed Jun 08 2011 trenn@suse.de +- Update Suresh's version 2 of the patchseries: +- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. +- commit 4ef8999 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION +- commit a0a1386 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix for 3.0 +- commit dca1465 +* Tue Jun 07 2011 mmarek@suse.cz +- rpm/mkspec: Fix perl warning +- commit 395d7d8 +* Tue Jun 07 2011 trenn@suse.de +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#672008). +- stop_machine: enable __stop_machine() to be called from the + cpu online path (bnc#672008). +- commit 684cd78 +* Mon Jun 06 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was + only a workaround for a 11.3 update problem (cf bnc#615680). +- commit 05ade7d +* Sun Jun 05 2011 jslaby@suse.cz +- asus-wmi: Remove __init from asus_wmi_platform_init + (bnc#696212). +- commit 2e6cc6b +* Fri Jun 03 2011 mmarek@suse.cz +- Temporarily set PPC_DISABLE_WERROR=y in power to fix build +- commit 5e9cb3b +* Fri Jun 03 2011 mmarek@suse.cz +- scripts/kmsg-doc: Do not require Switch.pm. +- commit 83a39c7 +* Fri Jun 03 2011 mmarek@suse.cz +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- rpm/macros.kernel-source: Add -b option to %%kernel_module_package + to unconditionally call mkinitrd on kmp install (fate#309400). +- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to + weak-modules2 if the -b option is used. +- commit 83331f5 +* Wed Jun 01 2011 jbeulich@novell.com +- Delete patches.xen/sfc-* (as advised by Solarflare). +- commit a144c73 +* Tue May 31 2011 jeffm@suse.com +- Revert "- Updated to 3.0-rc1." + This reverts commit 5710413eb834b0f215f6f4249d6ff7c3f7673eb7. + Should have been committed to the merge-v3.0 branch. +- commit b2d9e72 +* Tue May 31 2011 jeffm@suse.com +- Updated to 3.0-rc1. + - Eliminated 9 patches. +- commit 5710413 +* Mon May 30 2011 jack@suse.cz +- mm: Fix assertion mapping->nrpages == 0 in end_writeback() + (bnc#693013 bnc#666423). +- Refresh patches.xen/tmem. +- commit d3e465a +* Mon May 30 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. +- aic94xx: world-writable sysfs update_bios file. + Update upstream info. +- commit 8912816 +* Fri May 27 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Set KBUILD_BUILD_{USER,HOST} to + geeko@buildhost, obsoleting the patch to scripts/mkcompile_h. +- commit b4b7255 +* Mon May 23 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39 final and c/s 1085. +- xen/sfc_netfront: fix an unused variable error. +- commit 3b6edff +* Fri May 20 2011 jslaby@suse.cz +- PM: Print a warning if firmware is requested when tasks are + frozen (bnc#695219). +- commit e78f4ce +* Fri May 20 2011 jslaby@suse.cz +- Refresh + patches.fixes/block-add-proper-state-guards-to-__elv_next_request.patch. + Bah, cherry-picked a wrong version. Fix it. +- commit f9674b8 +* Fri May 20 2011 jslaby@suse.cz +- Delete patches.suse/slab-handle-memoryless-nodes-v2a.patch. + It was part of removed SoN patches. +- commit 1d0599a +* Fri May 20 2011 jeffm@suse.com +- Updated to 2.6.39-final. +- commit 7c72384 +* Thu May 19 2011 jbeulich@novell.com +- supported.conf: blktap2 modules are supported. +- commit fa60394 +* Mon May 16 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup. +- commit f3bdb4c +* Fri May 13 2011 jeffm@suse.com +- Update to 2.6.39-rc7. + - Eliminated 5 patches. +- commit a8a170f +* Thu May 12 2011 jslaby@suse.cz +- block: add proper state guards to __elv_next_request. +- commit bcb6433 +* Thu May 12 2011 jslaby@suse.cz +- Delete + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + It's fixed differently by commits 43f12d47f and f844a709a7 in .39-rc1 +- commit 7934e2d +* Thu May 12 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. + Note about submission. +- commit 9922e20 +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/files-slab-rcu.patch. +- commit 6547edf +* Tue May 10 2011 mhocko@suse.cz +- patches.fixes/aggressive-zone-reclaim.patch: delete because + the patch is very workload specific and can lead to unexpected + reclaims in parallel node local workloads. +- commit 56cf10e +* Tue May 10 2011 mhocko@suse.cz +- Delete patches.suse/mm-devzero-optimisation.patch: we do not need + it anymore as we have zero page back since 2.6.32 +- commit 323a093 +* Tue May 10 2011 mmarek@suse.cz +- Really delete patches.fixes/aggressive-zone-reclaim.patch. +- commit b21d4b6 +* Mon May 09 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc6. +- commit b976a7e +* Mon May 09 2011 jbeulich@novell.com +- patches.suse/kconfig-automate-kernel-desktop: Remove stray blank + lines (for older versions of "patch" to grok). +- commit 4dfa74d +* Sat May 07 2011 jeffm@suse.com +- Removed network driver entropy patches. haveged is installed by default + and should be enabled to generate entropy from non-predictable sources. + - Delete patches.drivers/bnx2-entropy-source.patch. + - Delete patches.drivers/e1000-entropy-source.patch. + - Delete patches.drivers/e1000e-entropy-source.patch. + - Delete patches.drivers/igb-entropy-source.patch. + - Delete patches.drivers/ixgbe-entropy-source.patch. + - Delete patches.drivers/tg3-entropy-source.patch. +- commit c88b893 +* Fri May 06 2011 jeffm@suse.com +- Update + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + (bnc#466279 bnc#681639). +- commit 72e779f +* Fri May 06 2011 jeffm@suse.com +- Disabled patches.drivers/libata-unlock-hpa-by-default; It may have + been obsoleted by upstream commit d8d9129e. +- commit 1a21ab3 +* Fri May 06 2011 jeffm@suse.com +- sysctl: Increase IPC defaults (bnc#146656) + - Delete patches.suse/shmall-bigger. +- commit a70e34f +* Fri May 06 2011 jeffm@suse.com +- sysctl/i386/desktop, sysctl/x86_64/desktop: Add vm.dirty_ratio = 20 + for desktop flavors (bnc#552883) + - Delete patches.suse/mm-tune-dirty-limits.patch. +- commit dbe73e2 +* Fri May 06 2011 jeffm@suse.com +- sysctl/defaults: Added kernel.hung_task_timeout=0 + - Delete patches.suse/hung_task_timeout-configurable-default. +- commit 78f9eed +* Fri May 06 2011 mmarek@suse.cz +- rpm/kernel-{binary,source}.spec.in: Install per-kernel /boot/sysctl-* + files (patch from Jeff Mahoney). +- commit 473f2d1 +* Thu May 05 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 97ce5d8 +* Thu May 05 2011 jeffm@suse.com +- Updated to 2.6.39-rc6. + - 2 patches eliminated. +- commit 2643e59 +* Tue May 03 2011 tonyj@suse.de +- Delete patches.fixes/oprofile_bios_ctr.patch. +- Delete patches.suse/kdump-dump_after_notifier.patch. +- commit 012455a +* Fri Apr 29 2011 jeffm@suse.com +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an + awk regex. It's technically invalid. +- commit 52dd0f0 +* Fri Apr 29 2011 sjayaraman@suse.de +- Delete patches.suse/sched-revert-latency-defaults. +- commit 90be226 +* Fri Apr 29 2011 tiwai@suse.de +- Delete patches.arch/ppc-ipic-suspend-without-83xx-fix. +- Delete patches.arch/x86-hpet-pre-read. +- commit 3489146 +* Fri Apr 29 2011 gregkh@suse.de +- Delete patches.suse/linux-2.6.29-dont-wait-for-mouse.patch. +- Delete patches.suse/linux-2.6.29-even-faster-kms.patch. +- Delete + patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch. +- Delete patches.suse/linux-2.6.29-kms-after-sata.patch. +- Delete patches.suse/linux-2.6.29-touchkit.patch. +- commit c13427d +* Fri Apr 29 2011 jbenc@suse.cz +- Delete patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch. +- commit df46fe0 +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.xen/xen3-x86-mcp51-no-dac. + Also remove the series.conf entires for the x86-mcp-no-dac patches. +- commit 574577b +* Thu Apr 28 2011 rjw@suse.de +- Delete patches.arch/x86-mcp51-no-dac. (This is a blacklist entry that + has been rejected by the mainline, the problem reporter is gone and + it's next to impossible to verify it now.) +- commit 195b113 +* Thu Apr 28 2011 jslaby@suse.cz +- Refresh + patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices. +- commit a2662ae +* Thu Apr 28 2011 jslaby@suse.cz +- Delete patches.suse/wireless-no-aes-select. + Optimized x86 AES implementations select CRYPTO_AES themselves. So we + don't need the patch anymore -- AES is selected always. +- commit 88f80fa +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch. +- commit 9917206 +* Thu Apr 28 2011 bphilips@suse.de +- Delete + patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch. +- commit 08374b3 +* Thu Apr 28 2011 jeffm@suse.com +- Delete patches.suse/audit-export-logging.patch. +- commit de054eb +* Thu Apr 28 2011 jbeulich@novell.com +- Update i386 Xen config files. +- commit 7b776ee +* Thu Apr 28 2011 jack@suse.cz +- Fix checking of login id (bnc#626119). +- commit 3f71ac4 +* Thu Apr 28 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc5. +- Delete patches.xen/xen3-seccomp-disable-tsc-option. +- Delete patches.xen/xen3-x86-mark_rodata_rw.patch. +- commit 81fdf67 +* Wed Apr 27 2011 jeffm@suse.com +- Delete + patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch. +- commit 399a100 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/x86_agpgart-g33-stoeln-fix-2.patch. +- commit e5c964a +* Wed Apr 27 2011 jeffm@suse.com +- Merged patches.fixes/fix-nf_conntrack_slp into patches.suse/netfilter-ip_conntrack_slp.patch. +- commit 213a0d5 +* Wed Apr 27 2011 jeffm@suse.com +- Removed Swap-over-NFS patches. +- commit e061d16 +* Wed Apr 27 2011 jeffm@suse.com +- Unified novfs patches into patches.suse/novfs-client-module. +- commit 3f8a199 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/reiserfs-remove-2-tb-file-size-limit. +- commit 2d63b14 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/mm-increase-dirty-limits.patch: Replaced by patches.suse/mm-tune-dirty-limits.patch +- commit 4f8033f +* Wed Apr 27 2011 jeffm@suse.com +- series.conf: Removed commented out patches for cpuidle. The patches themselves are long gone. +- commit 93ce9f3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/acpi-export-hotplug_execute: ACPI_DOCK is now a boolean. +- commit f178332 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch. +- commit 5a2eae2 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/acpi-don-t-preempt-until-the-system-is-up. +- Delete + patches.suse/acpi-generic-initramfs-table-override-support. +- Delete patches.suse/add-initramfs-file_read_write. +- Delete + patches.suse/init-move-populate_rootfs-back-to-start_kernel. +- commit d4910b3 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/nfs-acl-caching.diff. +- Delete patches.suse/nfsacl-client-cache-CHECK.diff. +- commit e1a5c5c +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/osync-error. It was unused and the issue it fixed in + kernels prior to 2.6.32 doesn't exist anymore. +- commit 52cc654 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/s390-System.map.diff: Proper fix in binutils has + long since been upstream. +- commit 2847a36 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/x86-mark_rodata_rw.patch: Removed as promised. +- commit f196f98 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.arch/ia64-page-migration. +- Delete patches.arch/ia64-page-migration.fix. +- Delete patches.arch/mm-avoid-bad-page-on-lru. +- commit e469a91 +* Wed Apr 27 2011 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: Update patch-mainline. +- commit 4bcc987 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.fixes/seccomp-disable-tsc-option: Unused in all configs. +- commit 0833556 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/unmap_vmas-lat: No bug report or signed-off-by. + - Delete patches.arch/s390-add-FREE_PTE_NR. +- commit 2a392c2 +* Wed Apr 27 2011 jeffm@suse.com +- Updated Patch-mainline for patches.fixes/ia64-sparse-fixes.diff. +- commit d79b32f +* Wed Apr 27 2011 jeffm@suse.com +- Update to 2.6.39-rc5. + - Eliminated 2 patches. +- commit 5288a05 +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.suse/export-release_open_intent. +- Delete patches.suse/export-security_inode_permission. +- commit 5cd669f +* Wed Apr 27 2011 jeffm@suse.com +- Delete patches.trace/utrace-core. +- commit a9639aa +* Tue Apr 26 2011 jkosina@suse.cz +- HID: add noget quirk barcode scanners from Symbol Technologies + (bnc#689290). +- commit f5b999f +* Fri Apr 22 2011 jeffm@suse.com +- Delete patches.suse/nameif-track-rename.patch: The same info is made available via udev. +- commit e74929e +* Tue Apr 19 2011 jack@suse.cz +- Revert changes to sparc configs to not make life harder for Jan Engelhardt + maintaining sparc architecture. +- commit cdac873 +* Tue Apr 19 2011 jack@suse.cz +- config.conf: Remove sparc as it is maintained separately by Jan Engelhardt +- commit 91307e3 +* Tue Apr 19 2011 jack@suse.cz +- Update vanilla config files. +- commit 5e3c232 +* Tue Apr 19 2011 jeffm@suse.com +- Updated to 2.6.39-rc4. + - Eliminated 1 patch. +- commit 3f654c8 +* Tue Apr 19 2011 jeffm@suse.com +- libata: DVR-216D can't do SETXFER DVD-RW DVR-216D (bnc#679143). +- commit b09d00e +* Mon Apr 18 2011 eich@suse.de +- Combined and consolidated bootsplash patch (bnc#669777, + bnc#570082, bnc#595657, bnc#594209, bnc#544645). + - Delete patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch. + - Delete patches.suse/bootsplash. + - Delete patches.suse/bootsplash-console-fix. + - Delete patches.suse/bootsplash-keep-multiple-data. + - Delete patches.suse/bootsplash-scaler. + - Reformatted code, fixed some minor bugs that became obvious. + - Fixed race that led to null pointer dereference in splash_read_proc(): + bnc#669777. +- commit 95844c5 +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Add a boot param to keep flushing TLBs (bnc#675161). +- commit 02c0d8a +* Sat Apr 16 2011 trenn@suse.de +- intel_idle: Make lapic_timer_reliable_states a boot param + (bnc#675161). +- commit 85b156b +* Sat Apr 16 2011 jack@suse.cz +- Disable ext2, use ext4 instead as a driver +- Update config files. +- commit 2601b15 +* Fri Apr 15 2011 jeffm@suse.com +- Enabled CONFIG_GIGASET_CAPI (bnc#686008). + - This results in automatically disabling CONFIG_GIGASET_I4L. +- commit 697e68b +* Fri Apr 15 2011 jack@suse.cz +- novfs: Set the sticky bit for the novfs mountpoint (bnc#686412). +- commit 860f111 +* Fri Apr 15 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add. +- commit 728e154 +* Fri Apr 15 2011 jbeulich@novell.com +- Update Xen patches to 2.6.39-rc3 and c/s 1079. +- blktap2: replace hard-coded limit of tap devices with + configurable one. +- config.conf: Re-enable Xen configs. +- Update x86 config files. +- commit d3bfd6c +* Thu Apr 14 2011 jeffm@suse.com +- fs/partitions/efi.c: corrupted GUID partition tables can cause + kernel oops (bnc#687113 CVE-2011-1577). +- commit 385b393 +* Thu Apr 14 2011 jeffm@suse.com +- scsi: aic94xx: world-writable sysfs update_bios file. +- commit 7f827e6 +* Wed Apr 13 2011 jeffm@suse.com +- mpc5xxx_can: Fix typo causing build failure (of_dev -> ofdev). +- ft1000: Remove unnecessary EXPORT_SYMBOLs. +- commit 62653bb +* Wed Apr 13 2011 jeffm@suse.de +- fhandle: Add for ia64. +- commit 83cec5a +* Wed Apr 13 2011 jeffm@suse.com +- kvm: Fix off by one in kvm_for_each_vcpu iteration. +- commit 4e5c2b7 +* Wed Apr 13 2011 jeffm@suse.com +- rts_pstor: Add . +- rts_pstor: use #ifdef instead of #if. +- commit caa5347 +* Tue Apr 12 2011 jeffm@suse.com +- gma500: Depend on X86. +- commit 3aa298c +* Tue Apr 12 2011 jeffm@suse.com +- Updated to 2.6.39-rc3. + - Eliminated 2 patches. +- commit 200c913 +* Tue Apr 12 2011 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: remove +- commit d7c79f2 +* Tue Apr 12 2011 jeffm@suse.com +- olpc: Add . +- commit 58ce0db +* Tue Apr 12 2011 jeffm@suse.com +- Update config files for -vanilla. +- commit 52fe306 +* Tue Apr 12 2011 jeffm@suse.com +- Update to 2.6.39-rc2. + - Eliminated 18 patches. + - Added 3 patches. + - hv_mouse: needs . + - dm-raid45: Remove blk_unplug calls. + - novfs: 2.6.39 API update. + - Xen, Swap-over-NFS, and certain SCSI multipath features are disabled. + - patches.kernel.org is no longer used to contain upstream patches + for -rc releases. Users planning on building their own kernel should + have a copy of the tarball corresponding to the -rc releases. +- commit adf9d16 +* Mon Apr 11 2011 neilb@suse.de +- Make selection of 'readdir-plus' adapt to usage patterns + (bnc#678123). +- commit 5de99a8 +* Wed Apr 06 2011 jeffm@suse.de +- reiserfs: Force inode evictions before umount to avoid crash + (bnc#610598 bnc#680073 bnc#684112). +- Delete patches.fixes/reiserfs-xattr-crash-fix. +- commit bf57d20 +* Tue Apr 05 2011 jslaby@suse.cz +- remove obsolete comment from series.conf +- commit 4bad172 +* Wed Mar 30 2011 jeffm@suse.com +- Delete patches.suse/twofish-2.6. + - This was for 2.4 compatibility and has been moved to KMP purgatory. +- commit dcca506 +* Wed Mar 30 2011 jslaby@suse.cz +- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo + (bnc#681826). +- commit 2e71042 +* Mon Mar 28 2011 trenn@suse.de +- Update config files, remove CONFIG_X86_MCE_XEON75XX=m + ->driver got reverted with previous commit +- Refresh patches.xen/xen3-auto-arch-x86.diff. +- commit b367e7b +* Mon Mar 28 2011 trenn@suse.de +- Remove xeon75xx driver, was intended as a SLE11 SP1 workaround + to decode physical memory address on Boxboro-EX for MCEs. + APEI implementation should take care of that in recent kernels. +- Delete patches.arch/x86_mce_intel_decode_physical_address.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch. +- Delete + patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch. +- commit 1fe7a22 +* Mon Mar 28 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not install unneeded packages in the + build chroot. +- commit 7f4c49d +* Mon Mar 28 2011 tiwai@suse.de +- ALSA: hda - Increase the default buffer size (682725). +- ALSA: hda - Fix pin-config of Gigabyte mobo (bnc#677256). +- commit 8088cec +* Thu Mar 24 2011 tiwai@suse.de +- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). +- commit 5253098 +* Thu Mar 24 2011 jslaby@suse.cz +- Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing + the signal code (bnc#681826 CVE-2011-1020). +- commit 2e42fd4 +* Thu Mar 24 2011 tiwai@suse.de +- sound/oss/opl3: validate voice and channel indexes (bnc#681999). +- sound/oss: remove offset from load_patch callbacks (bnc#681999). +- ALSA: sound/pci/asihpi: check adapter index in hpi_ioctl + (bnc#680816). +- commit 09ff6e9 +* Mon Mar 21 2011 jack@suse.cz +- Fix almost-infinite slab cache growing (bnc#554081). +- commit 52eabac +* Mon Mar 21 2011 jkosina@suse.cz +- HID: add support for Skycable 0x3f07 wireless presenter + (bnc#681297). +- commit 892e8d4 +* Mon Mar 21 2011 mmarek@suse.cz +- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. +- commit 9c2342b +* Fri Mar 18 2011 jslaby@suse.cz +- NET: cdc-phonet, handle empty phonet header (bnc#673992). +- commit da6e6d1 +* Fri Mar 18 2011 jslaby@suse.cz +- SPI: dw_spi, fix PPC build. +- commit 80ca063 +* Fri Mar 18 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38 and c/s 1073. +- commit 89cb2b4 +* Thu Mar 17 2011 sjayaraman@suse.de +- netvm: Do not mark requests for swapfile writes as dirty or + kswapd fails to free the page (bnc#678472). +- nfs: Use page_file_offset during page writeback (bnc#677738). +- nfs: Convert nfs_mark_request_dirty() to use page_file_mapping() + (bnc#677738). +- netvm: Remove duplicated initialization in net/ipv4/route.c + (bnc#678970). +- collapse: mm: Report the low watermark correctly (bnc#678497). +- commit a798dd1 +* Tue Mar 15 2011 jeffm@suse.com +- Update to 2.6.38. +- commit f2ec6ad +* Mon Mar 14 2011 jeffm@suse.com +- Linux: 2.6.38-rc8. + - Eliminated 1 patch. +- commit 7da557d +* Fri Mar 11 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc7 and c/s 1072 +- pv-ops blktap2. +- adjust xen build after addition of pv-ops' blktap2. +- blktap: Fix reference to freed struct request. +- cleanup to blkback and blktap. +- apply xen specific patch to the Chelsio ethernet drivers. +- Update Xen config files. +- commit 289ecca +* Fri Mar 11 2011 jbeulich@novell.com +- fix i386 unwind annotations. +- commit 02bd501 +* Tue Mar 08 2011 jeffm@suse.de +- Update to 2.6.38-rc7. + - Refresh patches.xen/xen-x86-no-lapic. + - Refresh patches.xen/xen3-patch-2.6.19. +- commit 7eb9d30 +* Mon Mar 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- rpm/kernel-binary.spec.in: Do not abort build because of + supported.conf inconsistency if %%supported_modules_check == 0. +- commit 88d5daa +* Wed Mar 02 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Fix a fatal oversight in + yesterday's change. +- commit 098768b +* Mon Feb 28 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Add annotations to + lib/rwsem_64.S. +- commit 87944ac +* Thu Feb 24 2011 tiwai@suse.de +- ALSA: usb-audio: fix oops due to cleanup race when disconnecting + (bnc#674735). +- commit ed81f8c +* Thu Feb 24 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove unused code. +- commit dacbc44 +* Tue Feb 22 2011 jeffm@suse.com +- Update to 2.6.38-rc6. + - Eliminated 1 patch. +- commit 6cce7bb +* Tue Feb 22 2011 mmarek@suse.cz +- rpm/mkspec: Do not create kernel-syms.spec on vanilla-only branches +- commit eb17bba +* Mon Feb 21 2011 tiwai@suse.de +- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, + CVE-2011-0712). +- commit 5ef002b +* Sat Feb 19 2011 rjw@suse.de +- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095). +- commit 41c6654 +* Thu Feb 17 2011 jeffm@suse.de +- Update to 2.6.38-rc5. +- commit 8344657 +* Thu Feb 17 2011 gregkh@suse.de +- Update config files. + - disable CONFIG_DRM_VMWGFX (bnc#606458) + - update sparc configs to at least be able to run "make oldconfig" +- commit da75bd9 +* Wed Feb 16 2011 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Re-add change lost during + initial 2.6.37 merge. +- commit e493205 +* Mon Feb 14 2011 mmarek@suse.cz +- Move spec file templates and helper scripts to a separate branch, to + ease synchronizing these files among master, vanilla and linux-next. +- commit 411abb8 +* Mon Feb 14 2011 mmarek@suse.cz +- Delete a couple of obsolete kabi and other scripts from misc/: +- Delete misc/checkmod. +- Delete misc/collect_ksyms. +- Delete misc/diff-the-xfs-cvs. +- Delete misc/ksyms.py. +- Delete misc/mangle-ifdef.py. +- Delete misc/obsolete-module-aliases. +- Delete misc/testmodule. +- commit edc6d32 +* Mon Feb 14 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code + was merged into rpm's find-supplements script. +- Delete rpm/check-build.sh, not needed anymore. +- commit 0a157b1 +* Thu Feb 10 2011 jeffm@suse.com +- flexcop: fix registering braindead stupid names (brc#575873 + bnc#661429). +- commit 72bd3d0 +* Wed Feb 09 2011 gregkh@suse.de +- Staging: samsung-laptop: add support for lots of laptops + (bnc#661682). +- commit 1eb5eaa +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Set timestamp of sources to the commit + timestamp, so that they are always older than generated files in + /usr/src/linux-obj (bnc#669669). +- commit 8565452 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to + keep timestamps intact. +- commit 9ba5ff0 +* Wed Feb 09 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches + (fix last change). +- commit 907f9cc +* Tue Feb 08 2011 jeffm@suse.com +- Updated to 2.6.38-rc4. + - Eliminated 1 patch. +- commit c327e0a +* Tue Feb 08 2011 jbeulich@novell.com +- Fix a few issues in patches.suse/stack-unwind (bnc#661409). +- commit 027481c +* Tue Feb 08 2011 jbeulich@novell.com +- Update Xen patches to 2.6.38-rc4 and c/s 1066. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 72cea6e +* Tue Feb 08 2011 jbeulich@novell.com +- Update config files. +- Refresh and re-enable patches.arch/x86_64-unwind-annotations. +- Refresh and re-enable patches.suse/stack-unwind. +- commit 1fabeda +* Tue Feb 08 2011 sjayaraman@suse.de +- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an + upstream change. +- commit ae5bb3f +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next +- commit c93cd6c +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Remove dead code. +- commit 99e8891 +* Mon Feb 07 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition + of %%release_major and rename it to %%release_num to better describe + what it does. Add some comments to explain how the versioning works. +- commit 9a3bc94 +* Fri Feb 04 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Fix sed regexp +- commit 608bae2 +* Fri Feb 04 2011 jeffm@suse.com +- hfs: avoid crash in hfs_bnode_create (bnc#552250). +- commit d84296a +* Fri Feb 04 2011 jeffm@suse.com +- Updated to 2.6.38-rc3. + - Eliminated 2 patches. +- commit b6b51ca +* Wed Feb 02 2011 tiwai@suse.de +- ALSA: hda - Fix memory leaks in conexant jack arrays + (bnc#668929). +- commit 31971a4 +* Tue Feb 01 2011 jslaby@suse.cz +- Refresh patches.rpmify/cloneconfig.diff. + scripts/kconfig/conf accepts long parameters only for some time already +- commit 939410c +* Mon Jan 24 2011 jeffm@suse.com +- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279). +- commit 4bf0e68 +* Sun Jan 23 2011 jeffm@suse.de +- winbond: needs for msleep and friends. +- commit e394a2e +* Sun Jan 23 2011 jeffm@suse.de +- Refresh patches.arch/ia64-page-migration: Update for migrate_pages() API change. +- commit 40d2921 +* Sun Jan 23 2011 jeffm@suse.de +- supported.conf: Added rc_core as a dependency. +- commit 8b2c1b9 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files. + - CONFIG_EXPERT=n on all but ps3 + - Vanilla configs updated. +- commit b25e639 +* Sun Jan 23 2011 jeffm@suse.com +- Revert "- Update config files: CONFIG_EXPERT=n except ps3" + This reverts commit 3f2c93d6a0593b2cc0c40f5ffee426eef27cc400. + This was a bad commit. I have no idea where all the changes came from. +- commit 459f3f1 +* Sun Jan 23 2011 jeffm@suse.com +- Update config files: CONFIG_EXPERT=n except ps3 +- commit 3f2c93d +* Sun Jan 23 2011 jeffm@suse.com +- Updated to 2.6.38-rc2. + - Eliminated 1 patch. +- commit 90baa82 +* Sat Jan 22 2011 jeffm@suse.com +- ata: Fix panics with ata_id (bnc#660464). +- commit fa7af15 +* Sat Jan 22 2011 jeffm@suse.de +- Updated some Patch-mainline headers. +- commit 9122bf0 +* Sat Jan 22 2011 jeffm@suse.de +- Update to 2.6.38-rc1. + - Removed 12 patches. + - Xen is disabled. + - Quite a few patches need updating. +- commit 9163bb7 +* Fri Jan 21 2011 trenn@suse.de +- perf: Do not export power_frequency, but power_start event + (bnc#665153). +- cpuidle/x86/perf: fix power:cpu_idle double end events and + throw cpu_idle events from the cpuidle layer (bnc#665153). +- perf: Clean up power events by introducing new, more generic + ones (bnc#665153). +- cpuidle: Rename X86 specific idle poll state from C0 to POLL + (bnc#665153). +- perf timechart: Adjust perf timechart to the new power events + (bnc#665153). +- Fix display of idle boxes (none). +- Fix huge and wronge C-state drawings due to uninitialized + start/end timestamps (none). +- Update config files. +- doc/config-options.changes: + CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +- commit b308eff +* Wed Jan 19 2011 jbohac@suse.cz +- revert: ipv6: don't flush routes when setting loopback down. +- commit de347ac +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Initialize the global lock spinlock as + appropriate (bnc#637377). +- commit c4b8238 +* Tue Jan 18 2011 trenn@suse.de +- ACPI / ACPICA: Fix global lock acquisition (bnc#637377). +- commit 15cd726 +* Mon Jan 17 2011 jeffm@suse.com +- mISDN: Add support for group membership check (bnc#564423). +- commit 3f46938 +* Fri Jan 14 2011 mmarek@suse.cz +- Revert %%kernelrelease changes originally made on the vanilla branch, + they break on master and must be done differently. +- commit b610327 +* Thu Jan 13 2011 jkosina@suse.cz +- Input: introduce 'notimeout' blacklist for Dell Vostro V13 + (bnc#641105). +- commit cb76856 +* Wed Jan 12 2011 jeffm@suse.com +- In-kernel dependencies for reiser4 + - Delete patches.suse/reiser4-exports. + - Delete patches.suse/reiser4-set_page_dirty_notag. +- commit 1b97130 +* Tue Jan 11 2011 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29: Fix a regression. +- commit 6acb967 +* Mon Jan 10 2011 jack@suse.cz +- novfs: NCP Fragments can be upto 64k in size (bnc#625965). +- commit afd7489 +* Mon Jan 10 2011 jbeulich@novell.com +- Update Xen patches to 2.6.37-final and c/s 1062. +- commit ef70146 +* Mon Jan 10 2011 jeffm@suse.com +- Enabled AGP modules as parts of the static kernel on i386 (bnc#609607) +- commit 9446eb0 +* Sat Jan 08 2011 jengelh@medozas.de +- config: run oldconfig on sparc64/default +- commit aa3e940 +* Sat Jan 08 2011 jengelh@medozas.de +- config: update sparc64/net and throw out unworthy options +- commit 1aca53d +* Fri Jan 07 2011 mmarek@suse.cz +- Delete patches.suse/gfs2-ro-mounts-only.patch (obsolete and unused) +- commit 38ff246 +* Fri Jan 07 2011 trenn@suse.de +- Some are mainline, some are/will be implemented differently: +- Delete patches.drivers/dynamic_debug_1.patch. +- Delete patches.drivers/dynamic_debug_2.patch. +- Delete patches.drivers/dynamic_debug_3.patch. +- Delete patches.drivers/dynamic_debug_4.patch. +- Delete patches.drivers/dynamic_debug_5.patch. +- Delete patches.drivers/dynamic_debug_6.patch. +- Delete patches.drivers/dynamic_debug_7.patch. +- commit 68dc5c8 +* Fri Jan 07 2011 neilb@suse.de +- Remove old patch +- commit 7fc009b +* Thu Jan 06 2011 jeffm@suse.com +- reiserfs: Fix crash during umount (bnc#610598). +- commit 88f26ac +* Thu Jan 06 2011 mmarek@suse.cz +- rpm/kernel-source.spec.in: Move the source tree if %%kernelrelease is + different from the tarball version. +- commit 6be9ffe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.suse/export-sync_page_range (unused). +- commit d19ee6d +* Thu Jan 06 2011 jeffm@suse.com +- Delete patches.suse/supported-flag-sysfs: Merged with patches.suse/supported-flag +- commit 0f2e67b +* Thu Jan 06 2011 jeffm@suse.com +- Removed unused kdb patches. + - Delete patches.suse/kdb-build-fixes. + - Delete patches.suse/kdb-common. + - Delete + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings. + - Delete + patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro. + - Delete patches.suse/kdb-handle-nonexistance-keyboard-controller. + - Delete patches.suse/kdb-ia64. + - Delete patches.suse/kdb-usb-rework. + - Delete patches.suse/kdb-vm-api-changes-for-2-6-34. + - Delete patches.suse/kdb-x86. + - Delete patches.suse/kdb-x86-build-fixes. + - Delete patches.suse/kdb_dont_touch_i8042_early.patch. + - Delete patches.suse/kdb_fix_ia64_build.patch. + - Delete patches.xen/xen3-kdb-x86. +- commit c9e725d +* Thu Jan 06 2011 jeffm@suse.com +- rpm/kernel-source.spec.in: Remove the relocation of the source tree. + It's expanded in-place. +- commit 8cde941 +* Thu Jan 06 2011 jack@suse.cz +- Delete patches.suse/ext2-fsync-err as it is obsolete and unused. +- commit c8f4ebe +* Thu Jan 06 2011 mmarek@suse.cz +- Delete patches.fixes/kbuild-fix-generating-of-.symtypes-files. + Fixed upstream in commit e26d6b8. +- commit 1b628e1 +* Thu Jan 06 2011 mgalbraith@suse.de +- Replaced autogroup patch with what will appear in 2.6.38 +- Replaced cgroup use after free fix wtih what will appear in 2.6.38 +- Refresh + patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash. +- Refresh patches.suse/sched-automated-per-session-task-groups. +- Delete patches.fixes/sched-fix-autogroup-proc-interface-race. +- commit 81f018b +* Thu Jan 06 2011 jeffm@suse.com +- Update to 2.6.37-final. +- commit f4cd126 +* Thu Dec 30 2010 jeffm@suse.com +- taskstats: Use better ifdef for alignment (bko#24272). +- commit 2948ffa +* Wed Dec 29 2010 jeffm@suse.com +- Update to 2.6.37-rc8. + - Eliminated 1 patch. +- commit 42518e6 +* Tue Dec 28 2010 mgalbraith@suse.de +- sched: fix autogroup /proc interface race. +- commit fd7019c +* Tue Dec 28 2010 jeffm@suse.com +- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR. +- commit c8014fb +* Tue Dec 28 2010 jeffm@suse.com +- sched, cgroup: Use exit hook to avoid use-after-free crash. +- commit 59c0581 +* Tue Dec 28 2010 jeffm@suse.com +- Update to 2.6.37-rc7. + - Eliminated 9 patches. +- commit d38591c +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "x86: allocate space within a region top-down" + (bnc#655048). + Backport to XEN. +- commit 92c0965 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive + decode" (bnc#655048). +- Revert "x86: allocate space within a region top-down" + (bnc#655048). +- Revert "x86/PCI: allocate space from the end of a region, + not the beginning" (bnc#655048). +- Revert "PCI: allocate bus resources from the top down" + (bnc#655048). +- Revert "resources: support allocating space within a region + from the top down" (bnc#655048). +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid low BIOS area when allocating address space + (bnc#655048). +- x86: avoid E820 regions when allocating address space + (bnc#655048). +- x86: avoid high BIOS area when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7bbbf27 +* Mon Dec 20 2010 jslaby@suse.cz +- Revert "- resources: add arch hook for preventing allocation in reserved" + This reverts commit 7e253537787f4fb057e12a166356169c5adb9665. It was unintended to be pushed as the patches are obsoleted. +- commit 6f3bdf8 +* Mon Dec 20 2010 jslaby@suse.cz +- Delete + patches.fixes/res-0010-PCI-fix-pci_bus_alloc_resource-hang-prefer-positive-.patch. + It's unreferenced and wrong. +- commit 9e6fc50 +* Fri Dec 17 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Define %%kernelrelease +- commit 1d67b13 +* Thu Dec 16 2010 jeffm@suse.com +- Linux: 2.6.37-rc6. +- Update config files. +- Refresh patches.suse/SoN-23-mm-swapfile.patch. +- Refresh patches.suse/SoN-26-nfs-swapper.patch. +- Refresh patches.xen/xen3-fixup-xen. +- Refresh patches.xen/xen3-patch-2.6.24. +- commit 5650f90 +* Mon Dec 13 2010 jbeulich@novell.com +- Update Xen config files (XEN_NETDEV_LOOPBACK=n). +- supported.conf: Update. +- commit d385dff +* Mon Dec 13 2010 tiwai@suse.de +- Refresh patches.suse/bootsplash-scaler: Fix crash when bootsplash animation is used (bnc#646908) +- commit c5eced1 +* Fri Dec 10 2010 jslaby@suse.cz +- resources: add arch hook for preventing allocation in reserved + areas (bnc#655048). +- x86: avoid BIOS area when allocating address space (bnc#655048). +- x86: avoid PNP resources when allocating address space + (bnc#655048). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 7e25353 +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen config files (CONFIG_XEN_COMPAT=0x040000). +- commit 5343e5f +* Fri Dec 10 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc5. +- commit bef1a0d +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config +- commit 149d22b +* Thu Dec 09 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:Factory +- commit bf19860 +* Wed Dec 08 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Allow to build against any version of + kernel-source +- commit 37bdc47 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Remove stringification + (needed only with very old assemblers). +- commit 987c244 +* Tue Dec 07 2010 jeffm@suse.com +- scripts/sequence-patch.sh: Added -vanilla suffix to the directory name when expanding vanilla tree. +- commit 77ad87b +* Tue Dec 07 2010 jeffm@suse.com +- Update vanilla config files. +- commit f55f81b +* Tue Dec 07 2010 jeffm@suse.com +- Update to 2.6.37-rc5. +- commit ca102d9 +* Tue Dec 07 2010 jbeulich@novell.com +- patches.suse/novfs-fix-ioctl-usage: Fix compiler warnings. +- commit faf2142 +* Mon Dec 06 2010 mgalbraith@suse.de +- Replace buggy per tty autogroup patch with final per session patch as + integrated into tip. +- sched: Add 'autogroup' scheduling feature: automated per session task groups (bnc#657613). +- Delete patches.suse/sched-automated-per-tty-task-groups. +- commit 0db6b6b +* Mon Dec 06 2010 jbeulich@novell.com +- patches.rpmify/rpm-kernel-config, patches.rpmify/split-package, + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch, + patches.suse/SoN-15-netvm-reserve.patch, + patches.suse/SoN-27-nfs-swap_ops.patch, + patches.suse/kconfig-automate-kernel-desktop, + patches.suse/mm-tune-dirty-limits.patch, + patches.suse/supported-flag-enterprise: Clean up Kconfig portions. +- commit 713650c +* Mon Dec 06 2010 jeffm@suse.com +- Fixed corrupted -rc4 patch. +- commit 9802d4e +* Mon Dec 06 2010 jeffm@suse.de +- Update to 2.6.37-rc4. +- commit d102b44 +* Mon Nov 29 2010 jeffm@suse.com +- Merge 2.6.37-rc3-git6 with Xen. +- commit 7089cd5 +* Mon Nov 29 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git6. +- commit 1294ef9 +* Fri Nov 26 2010 jbeulich@novell.com +- Update Xen patches to 2.6.37-rc3-git1 and c/s 1055. +- xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). +- xen/acpi: Export host physical CPU information to dom0 + (bnc#651066). +- Xen: para-virtual watchdog driver. +- introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. +- eliminate scalability issues from initrd handling. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit cf6d991 +* Fri Nov 26 2010 trenn@suse.de +- PERF: Fix perf timechart C-state regression (none). +- commit ba2671d +* Wed Nov 24 2010 jeffm@suse.com +- Update to 2.6.37-rc3-git1. +- commit 4ad245f +* Mon Nov 22 2010 jeffm@suse.com +- Update to 2.6.37-rc3. + - Eliminated 1 patch. +- commit 12ac0ac +* Mon Nov 22 2010 jslaby@suse.cz +- Delete patches.fixes/make-note_interrupt-fast.diff. +- Delete patches.fixes/twl6030-fix-note_interrupt-call. + __do_IRQ from ia64 lapic code is no longer called, because they use + genirqs properly. So these patches don't make sense anymore. If we + need something to do, then it's adding action_ret == IRQ_NONE test + into handle_percpu_irq before jumping into note_interrupt. +- commit facd623 +* Sun Nov 21 2010 jslaby@suse.cz +- PCI: fix offset check for sysfs mmapped files (bnc#655157). +- commit 2938f56 +* Wed Nov 17 2010 jeffm@suse.com +- sched: automated per tty task groups. + - Enabled in -desktop flavors for better interactivity. +- commit 2d5d397 +* Tue Nov 16 2010 jeffm@suse.de +- doc/config-options.changes: Updated changes for 2.6.37-rc1 and -rc2. +- commit 0aca8b8 +* Tue Nov 16 2010 jeffm@suse.com +- Update to 2.6.37-rc2. +- commit 1453a04 +* Tue Nov 16 2010 jslaby@suse.cz +- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode + (bnc#651256). +- commit 4404c19 +* Mon Nov 15 2010 jeffm@suse.com +- Update vanilla config files. +- commit 60b4a47 +* Mon Nov 15 2010 jeffm@suse.com +- Update to 2.6.37-rc1-git11. + - Eliminated 2 patches. +- commit 5959a67 +* Mon Nov 15 2010 jeffm@suse.com +- supported.conf: Added missing dependencies. +- commit 0537c35 +* Sat Nov 13 2010 jslaby@suse.cz +- TTY: restore tty_ldisc_wait_idle (bnc#642043). +- commit 84d87bf +* Fri Nov 12 2010 jeffm@suse.de +- Update to 2.6.37-rc1. + - Eliminated 26 patches. + - Xen is disabled. +- commit b9044e3 +* Thu Nov 11 2010 gregkh@suse.de +- Update config files. (bnc#652954) increase the number of possible and + default uarts for users with multi-port serial cards for the i386 and + x86-64 default configs. +- commit 85c87e3 +* Thu Nov 11 2010 jslaby@suse.cz +- rt2x00: Fix max TX power settings (bnc#584028). +- rt2x00: Fix channel configuration for RF3052 (bnc#584028). +- commit 60c0452 +* Thu Nov 11 2010 jslaby@suse.cz +- resources: add a default alignf to simplify find_resource() + (bnc#651256). +- resources: factor out resource_clip() to simplify + find_resource() (bnc#651256). +- resources: ensure callback doesn't allocate outside available + space (bnc#651256). +- resources: handle overflow when aligning start of available area + (bnc#651256). +- resources: support allocating space within a region from the + top down (bnc#651256). +- PCI: allocate bus resources from the top down (bnc#651256). +- x86/PCI: allocate space from the end of a region, not the + beginning (bnc#651256). +- x86: update iomem_resource end based on CPU physical address + capabilities (bnc#651256). +- x86: allocate space within a region top-down (bnc#651256). +- Refresh patches.xen/xen3-patch-2.6.34. +- commit 8c68ad1 +* Tue Nov 09 2010 jack@suse.cz +- novfs: Fix for the issue of kernel dumps core on restart + (bnc#641811). +- commit 76ba833 +* Fri Oct 29 2010 jslaby@suse.cz +- net: Limit socket I/O iovec total length to INT_MAX + (bnc#650128). +- commit 2ba74bb +* Fri Oct 29 2010 trenn@suse.de +- Update config files. + Forgot to enable ACPI_EC_DEBUGFS on i386/pae +- commit 66b605b +* Wed Oct 27 2010 jslaby@suse.cz +- aha152x: enable PCMCIA on 64bit (bnc#630652). +- Update config files. +- commit a91d17c +* Wed Oct 27 2010 jslaby@suse.cz +- hpet: unmap unused I/O space (bnc#629908 bnc#629901). +- commit dad22c3 +* Tue Oct 26 2010 trenn@suse.de +- Update config files. + Enable CONFIG_ACPI_EC_DEBUGFS=m on supported archs. +- commit 9035254 +* Tue Oct 26 2010 jbeulich@novell.com +- Update Xen config files (restore options accidentally deleted + by 1b1584fccbfdc42e6e8b35c3c207ca65feb0c7d5). +- commit f8e5000 +* Mon Oct 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36 and c/s 1043. +- xen: netback: take net_schedule_list_lock when removing entry + from net_schedule_list. +- Update Xen config files. +- commit b772cd8 +* Mon Oct 25 2010 tiwai@suse.de +- ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324). +- ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). +- ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 + (bnc#564324). +- commit 2256eda +* Fri Oct 22 2010 jeffm@suse.de +- Update to 2.6.36-final. +- commit 1b1584f +* Fri Oct 22 2010 jbeulich@novell.com +- patches.arch/i386-unwind-annotations, + patches.arch/x86_64-unwind-annotations: Update Patch-mainline tags. +- commit 6ee5ccb +* Thu Oct 21 2010 sjayaraman@suse.de +- SoN: fix null pointer dereference in swap_entry_free. +- SoN: fix mess up on swap with multi files from same nfs server. +- Refresh patches.xen/tmem. +- commit d068f12 +* Mon Oct 18 2010 trenn@suse.de +- ACPI: Make Embedded Controller command timeout delay + configurable (bnc#639261). +- commit 9ea38cf +* Fri Oct 15 2010 jslaby@suse.cz +- Update to 2.6.36-rc8. +- commit 0c0e67c +* Fri Oct 15 2010 jslaby@suse.cz +- Refresh patches.suse/SoN-22-netvm.patch. + Fix lock imbalance in net core (caused errors with bridges). (bnc#637235) +- commit f7ca98f +* Tue Oct 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc7 and c/s 1042. +- Update tmem interface to v1. +- commit 03c1043 +* Mon Oct 11 2010 mmarek@suse.cz +- Generate per-symbol provides again (fate#305945). + 11.4 will do incremental downloads of repository metadata + (fate#309561), so there should be no problem with the update + repository anymore. +- commit 4258cf2 +* Mon Oct 11 2010 jbeulich@novell.com +- patches.apparmor/apparmor-compatibility-patch-for-v5-network-control: + Remove .rej file from this patch. +- commit 8828ce5 +* Fri Oct 08 2010 jeffm@suse.de +- Update to 2.6.36-rc7. +- commit 82673e4 +* Tue Oct 05 2010 jbeulich@novell.com +- patches.drivers/dynamic_debug_4.patch: Fix build issues with + !DYNAMIC_DEBUG and build warning. +- commit b08d2aa +* Tue Oct 05 2010 jeffm@suse.de +- Enable SECURITY_APPARMOR_COMPAT_24 +- commit f9b83fc +* Tue Oct 05 2010 jeffm@suse.de +- AppArmor: Allow dfa backward compatibility with broken + userspace. +- AppArmor: compatibility patch for v5 interface. +- AppArmor: compatibility patch for v5 network control. +- commit cb27981 +* Mon Oct 04 2010 jeffm@suse.de +- Update to 2.6.36-rc6. + - Eliminated 2 patches. +- commit 57ae577 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 one more time. +- commit d527087 +* Fri Sep 24 2010 trenn@suse.de +- acpi: ec_sys: access user space with get_user()/put_user() + (none). +- commit d028761 +* Fri Sep 24 2010 trenn@suse.de +- kernel/module.c: Fix compiler warnings if debug is compiled in + (none). +- PNP: Use dev_dbg instead of dev_printk(KERN_DEBUG.. if + DYNAMIC_DEBUG is compiled in (none). +- PNP: Compile all pnp built-in stuff in one module namespace + (none). +- Dynamic Debug: Introduce global fake module param module.ddebug + - V4 (none). +- Dynamic Debug: Initialize dynamic debug earlier via + arch_initcall (none). +- Dynamic Debug: Introduce ddebug_query= boot parameter (none). +- Dynamic Debug: Split out query string parsing/setup from + proc_write (none). +- commit dcd5c68 +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28 again. +- commit 2fbc89f +* Fri Sep 24 2010 jbeulich@novell.com +- Refresh patches.xen/xen3-patch-2.6.28. +- commit cba31c7 +* Fri Sep 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc5 and c/s 1038. +- commit 7b86243 +* Thu Sep 23 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix for kernel release strings like + 2.6.36-rc5-73-g57aebd7-vanilla. +- rpm/kernel-spec-macros: Cleanup. +- commit 0926a18 +* Thu Sep 23 2010 jeffm@suse.de +- rose: Fix signedness issues wrt. digi count (CVE-2010-3310 + bnc#640721). +- commit bcdc88b +* Tue Sep 21 2010 jeffm@suse.de +- qla4xxx: add workaround for missing readq/writeq. +- commit 643f9cf +* Tue Sep 21 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: BuildRequire proper version of kernel-source +- commit beb33d1 +* Tue Sep 21 2010 jeffm@suse.de +- Linux: 2.6.36-rc5. + - Eliminated 6 patches (all security backports). +- commit d4603b4 +* Mon Sep 20 2010 jeffm@suse.de +- Revert "- make SCSI and ATA drivers modules again. (bnc#564357)." + This reverts commit 75e8e5eae2c1e8dd279370f2c7650835ee821deb. + - make SCSI and ATA drivers modules again. + (bnc#564357) + This change only applies to enterprise releases and should have been + reverted prior to the release of openSUSE 11.3. +- commit 7fc084f +* Mon Sep 20 2010 sjayaraman@suse.de +- Update patches.suse/SoN-05-reserve-slub.patch to accomodate an upstream + change that uses kmem_cache flags instead of PageSlubDebug flag. +- commit 4ea582b +* Mon Sep 20 2010 jeffm@suse.de +- Set LSM_MMAP_MIN_ADDR=0 to allow tools like DOSemu to work properly. The + default is still set to 64k. +- commit 0581892 +* Sun Sep 19 2010 jeffm@suse.com +- Delete patches.suse/cgroup-disable-memory.patch: It is no longer needed. The performance hit that it caused has been eliminated. +- commit 1ec7da8 +* Fri Sep 17 2010 jeffm@suse.de +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- wext: fix potential private ioctl memory content leak + (CVE-2010-2955 bnc#635413). +- commit 6df45c9 +* Thu Sep 16 2010 jeffm@suse.de +- x86-64, compat: Test %%rax for the syscall number, not %%eax + (CVE-2010-3301 bnc#639708). +- x86-64, compat: Retruncate rax after ia32 syscall entry tracing + (CVE-2010-3301 bnc#639708). +- commit fb77404 +* Thu Sep 16 2010 jeffm@suse.de +- compat: Make compat_alloc_user_space() incorporate the + access_ok() (CVE-2010-3081 bnc#639709). +- commit 664a0ac +* Wed Sep 15 2010 jeffm@suse.com +- Remove reference to unused patch. +- commit a3abfe2 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/usb/hso.c: prevent reading uninitialized memory + (CVE-2010-3298 bnc#639483). +- commit 35e70c8 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized + stack memory (CVE-2010-3296 bnc#639481). +- commit a0634a9 +* Wed Sep 15 2010 jeffm@suse.de +- drivers/net/eql.c: prevent reading uninitialized stack memory + (CVE-2010-3297 bnc#639482). +- commit 2a7b160 +* Wed Sep 15 2010 tiwai@suse.de +- Revert "patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171" + This reverts commit c6a176c1df9ab4c69dd54ff3076bc92806eac8fd. + It should have been applied to SLE11-SP1 branch. +- commit 05f07f3 +* Tue Sep 14 2010 jslaby@suse.cz +- Update to Linux 2.6.36-rc4. + - Obsoletes: + - patches.fixes/bonding-jiffies2.patch. + - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure. + - patches.fixes/net-sched-fix-kernel-leak-in-act_police. + - patches.rpmify/spectra-depends-on-moorestown. +- fix build on s390 as of 2.6.36-rc4. +- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch. +- Refresh patches.suse/reiser4-set_page_dirty_notag. +- Refresh patches.xen/pci-guestdev. +- Update config files. +- commit 6915057 +* Mon Sep 13 2010 oneukum@suse.de +- patches.drivers/matador_reset_quirk.diff: Fix reset with Matador btusb devices bnc#626171 +- commit c6a176c +* Mon Sep 13 2010 jdelvare@suse.de +- patches.fixes/bonding-jiffies2.patch: Update patch-mainline. +- commit a1a8fdd +* Fri Sep 03 2010 jeffm@suse.de +- Always build in AGP on x86/x86_64 so KMS works on LiveCDs (bnc#609607). +- commit d9bfa1e +* Fri Sep 03 2010 jeffm@suse.com +- irda: Correctly clean up self->ias_obj on irda_bind() failure + (CVE-2010-2954 bnc#636112). +- commit f04e61f +* Wed Sep 01 2010 jbeulich@novell.com +- Update Xen patches to 2.6.36-rc3 and c/s 1029. +- fix unwind annotations. +- config.conf: Re-enable Xen. +- Update x86 config files. +- commit 6836619 +* Wed Sep 01 2010 jbeulich@novell.com +- fix unwind annotations. +- commit 5aa6daf +* Wed Sep 01 2010 jeffm@suse.com +- net sched: fix kernel leak in act_police (CVE-2010-2942 + bnc#632309). +- commit 66e1d72 +* Tue Aug 31 2010 jdelvare@suse.de +- fix jiffies overflow problems in bonding (bnc#613273). +- commit 28bd2e8 +* Mon Aug 30 2010 jeffm@suse.de +- Refresh vanilla configs. +- commit 26a681e +* Mon Aug 30 2010 jeffm@suse.de +- Update to Linux: 2.6.36-rc3. + - Eliminated 7 patches. +- commit d298d2d +* Sat Aug 28 2010 jslaby@suse.cz +- Delete + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch. +- Delete + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch. +- Delete + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch. + This was just a workaround crap. In 2.6.36 we have a nice syscall + instead. Sorry for commiting this to the merge-36 branch first. I + didn't notice it was already merged here. +- commit 5449fcb +* Fri Aug 27 2010 jeffm@suse.com +- Disabled ACPI table override patches again. fsnotify was introduced into + the truncate path and causes crashes. +- commit e18fc2c +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/supported-flag-enterprise: Fixed recovery on load failure. +- commit 8a06643 +* Thu Aug 26 2010 jeffm@suse.de +- Refresh patches.suse/stack-unwind: Fixed recovery on load failure. +- commit 7f15b29 +* Tue Aug 24 2010 jeffm@suse.com +- patches.arch/s390-message-catalog.diff: dev_info -> _dev_info +- commit ba20988 +* Tue Aug 24 2010 jeffm@suse.de +- patches.suse/stack-unwind: Fix build on !SMP +- commit abd5493 +* Tue Aug 24 2010 jeffm@suse.de +- s390: Fix prototype for execve. +- commit b448268 +* Tue Aug 24 2010 jeffm@suse.de +- spectra: depend on X86_MRST. +- commit 1e3fb89 +* Tue Aug 24 2010 jeffm@suse.de +- Delete patches.arch/ppc-vmcoreinfo.diff. +- commit ea39e14 +* Tue Aug 24 2010 jeffm@suse.de +- caif: Use asm/unaligned.h. +- commit 92c07c2 +* Tue Aug 24 2010 jeffm@suse.de +- Refresh patches.suse/SoN-20-netvm-tcp-deadlock.patch: Added missing + fixup for sk_rmem_schedule in caif. +- commit a9ff761 +* Tue Aug 24 2010 mmarek@suse.cz +- makefile: not need to regenerate kernel.release file when + make kernelrelease. +- commit 81237a8 +* Tue Aug 24 2010 jeffm@suse.com +- rpm/kernel-source.spec.in, scripts/tar-up.sh: Renamed config-options.changes + to config-options.changes.txt in the exported package to avoid triggering + a build service rule error. +- commit ff4889e +* Tue Aug 24 2010 jeffm@suse.com +- Revert "- Renamed doc/config-options.changes to doc/config-options.changes.txt to" + This reverts commit 124ac26de4839f8181a5badedb231eedf5770a3e. +- commit 2932c62 +* Tue Aug 24 2010 jeffm@suse.com +- Renamed doc/config-options.changes to doc/config-options.changes.txt to + avoid triggering a build service rule error. +- commit 124ac26 +* Mon Aug 23 2010 jeffm@suse.de +- supported.conf: Add iscsi_boot_sysfs +- commit 80e2ea9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Fixed typo with last fix. +- commit 22210d9 +* Mon Aug 23 2010 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disable CONFIG_DEBUG_INFO. It's enabled + dynamically in the spec file and now has follow-on options. +- commit d270759 +* Mon Aug 23 2010 jeffm@suse.de +- patches.rpmify/spectra-drop-locked_ioctl-support: add + to grab the BKL +- commit 1df02ec +* Mon Aug 23 2010 jeffm@suse.de +- Update config files: Disabled DEBUG_INFO_REDUCED. +- commit 393680a +* Mon Aug 23 2010 jeffm@suse.de +- Updated to 2.6.36-rc2. + - Eliminated 2 patches. +- commit 52d47a0 +* Wed Aug 18 2010 jeffm@suse.de +- Update to 2.6.36-rc1. + - Eliminated 71 patches. + - spectra: Drop ->locked_ioctl support. + - spectra: Drop ->prepare_flush_fn support. + - spectra: Remove duplicate GLOB_VERSION. + - novfs: Fix ioctl usage. + - novfs: use evict_inode. + - Xen is disabled. +- commit 63642f6 +* Mon Aug 16 2010 tiwai@suse.de +- ALSA: hda - Add quirk for Dell Vostro 1220 (bnc#631066). +- commit df12c34 +* Fri Aug 13 2010 jeffm@suse.com +- README.BRANCH: Updated to reflect the permenent in-progress status. +- commit a2c882e +* Thu Aug 12 2010 gregkh@suse.de +- Update to 2.6.35.1 + - security fixes + - bug fixes + - obsoletes: + patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch. +- commit a009fb4 +* Thu Aug 12 2010 gregkh@suse.de +- Delete patches.kernel.org/patch-2.6.35-rc1. +- Delete patches.kernel.org/patch-2.6.35-rc1-rc2. +- Delete patches.kernel.org/patch-2.6.35-rc2-rc3. +- Delete patches.kernel.org/patch-2.6.35-rc3-rc4. +- Delete patches.kernel.org/patch-2.6.35-rc4-rc5. +- Delete patches.kernel.org/patch-2.6.35-rc5-rc6. +- commit 2e67843 +* Thu Aug 12 2010 gregkh@suse.de +- Refresh patches.fixes/novfs-lindent. + Someone needs to remember to actually test out their patches before + adding them to the repo... +- commit 6569c56 +* Thu Aug 12 2010 jeffm@suse.com +- doc/README.SUSE: Updated to describe the process used to add custom patches +- commit e5f4670 +* Thu Aug 12 2010 jslaby@suse.cz +- patches.fixes/vmscan-fix-stalls.patch: vmscan: raise the bar + to PAGEOUT_IO_SYNC stalls (bnc#625339). +- commit 1efea94 +* Wed Aug 11 2010 jack@suse.cz +- novfs: Lindent novfs sources. +- commit 361594a +* Wed Aug 11 2010 neilb@suse.de +- Refresh + patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch. +- Refresh patches.fixes/sunrpc-monotonic-expiry. +- Delete patches.fixes/nfs-write.c-bug-removal.patch. + Update some patches for 2.6.35 +- commit 15d7a62 +* Wed Aug 11 2010 neilb@suse.de +- NFS: allow close-to-open cache semantics to apply to root of + NFS filesystem (bnc#584720). +- commit deea101 +* Tue Aug 10 2010 tiwai@suse.de +- ALSA: hda - patch_nvhdmi.c: Add missing codec IDs, unify names + (bnc#627212). +- ALSA: hda - Add pin-fix for HP dc5750 (bnc#624118). +- commit 4844a71 +* Mon Aug 09 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35 final and c/s 1025. +- create devices in /dev/xen when they are expected to be + used there. +- xen/netback: Allow setting of large MTU before rings have + connected. +- xen/netback: Always pull through PKT_PROT_LEN bytes into the + linear part of an skb. +- pass trigger mode and polarity information to Xen for all + interrupts. +- Update Xen config files. +- supported.conf: Add pci-iomul.ko. +- commit c642c1b +* Fri Aug 06 2010 jeffm@suse.de +- patches.xen/xen3-auto-xen-arch.diff: Update struct acpi_power_register + usage from upstream commit 718be4aa. +- commit 4ce0b48 +* Fri Aug 06 2010 jeffm@suse.de +- Update to 2.6.35-final and refresh patch set. +- commit a40327f +* Mon Aug 02 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Package log.sh in the source rpm +- commit 53246ff +* Fri Jul 23 2010 jack@suse.cz +- novfs: Fix error codes for getxattr for novfs (bnc#529535). +- commit 06b3243 +* Fri Jul 23 2010 jeffm@suse.de +- Update to 2.6.35-rc6. +- commit 643df99 +* Fri Jul 23 2010 jack@suse.cz +- novfs: code cleanup for one case of novfs return value + (bnc#624606). +- commit 4875860 +* Wed Jul 21 2010 jack@suse.cz +- Fixed patch headers of patches.fixes/novfs-xattr-memleak +- commit 65ab01f +* Wed Jul 21 2010 jack@suse.cz +- novfs: Fix a memory leak that causes an OOM condition + (bnc#610828). +- commit 519d8a0 +* Tue Jul 20 2010 jack@suse.cz +- novfs: backing device info initialization (bnc#623472). +- commit b576dae +* Tue Jul 20 2010 mmarek@suse.cz +- scripts/tar-up.sh: Generate the rpm changelog using gitlog2changes. +- Move kernel-source.changes.old to rpm/ (not included in the pachage + though). +- commit 8ed2389 +* Tue Jul 20 2010 jblunck@suse.de +- rpm/package-descriptions: Change summary/description for trace flavor (bnc#488692). +- commit da8e17e +* Mon Jul 19 2010 mmarek@suse.cz +- Move rpm changelog to kernel-source.changes.old +- commit 93036bd +* Thu Jul 15 2010 bphilips@suse.de +- X86_MRST: Disable moorsetown since it deselects SERIO_I8042 + - See 0b28bac5aef7bd1ab213723df031e61db9ff151a, fixed in -tip but we + still don't want X86_MRST +* Wed Jul 14 2010 trenn@suse.de +- patches.arch/acpi_fix_fadt_32_bit_zero_length.patch: Only use + 32 bit addresses if they have a valid length (bug#581644). +* Wed Jul 14 2010 bphilips@suse.de +- Update -desktop config files to enable CGROUPS for systemd +* Wed Jul 14 2010 jeffm@suse.de +- Update to 2.6.35-rc5. + - Eliminated 5 patches. +* Tue Jul 13 2010 jack@suse.de +- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer + overflow, integer wraparound fixes (bnc#594362). +* Wed Jul 07 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc4. +* Wed Jul 07 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-2.6.35-api-changes: Updated for -debug flavor. +* Wed Jul 07 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Jul 07 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Install config-option.changes + This file documents the changes in the kernel configs. +* Wed Jul 07 2010 mmarek@suse.cz +- patches.rpmify/kbuild-setlocalversion-fix: kbuild: Fix path + to scripts/setlocalversion. +* Wed Jul 07 2010 jeffm@suse.de +- Update to 2.6.35-rc4. + - Eliminated 4 patches. +* Fri Jul 02 2010 jeffm@suse.de +- patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices: + iwlwifi: fix TX power configuration on 3945 and 4965 devices + (bnc#619440 bnc#610421). +* Fri Jul 02 2010 jbeulich@novell.com +- patches.suse/stack-unwind: Fix after upstream commit + 9e565292270a2d55524be38835104c564ac8f795. +* Fri Jul 02 2010 trenn@suse.de +- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: + For some reason the macro used by dynamic debug breaks things + (bnc#619416). +* Fri Jul 02 2010 trenn@suse.de + Mainline goes another way (bug #476509). + Also there is a problem with this patch, breaking dynamic debugging + (bnc#619416) -> just remove it, there will show up something else + mainline. +- patches.xen/xen3-auto-arch-x86.diff: Refresh. +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + Delete. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Delete. +* Thu Jul 01 2010 jeffm@suse.de +- patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md: + dm-raid45: API update: Remove dm_put after dm_table_get_md + (bnc#615656). +* Thu Jul 01 2010 jdelvare@suse.de +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + Update references (bnc#610362). +* Thu Jul 01 2010 bphilips@suse.de +- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser.patch: + ixgbe: disable tx engine before disabling tx laser. +- patches.drivers/ixgbe-fix-panic-when-shutting-down-system-with-WoL-e.patch: + ixgbe: fix panic when shutting down system with WoL enabled. +- patches.drivers/ixgbe-skip-non-IPv4-packets-in-ATR-filter.patch: + ixgbe: skip non IPv4 packets in ATR filter. +- patches.fixes/e1000e-don-t-inadvertently-re-set-INTX_DISABLE.patch: + e1000e: don't inadvertently re-set INTX_DISABLE. +* Wed Jun 30 2010 bphilips@suse.de +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Delete. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Delete. +* Tue Jun 29 2010 nfbrown@suse.de +- patches.fixes/nfs_wb_page_deadlock.fix: NFS: Fix another + nfs_wb_page() deadlock (bnc#612794). +* Mon Jun 28 2010 mmarek@suse.cz +- rpm/find-provides: Add base symsets to the main subpackage. +* Fri Jun 25 2010 jeffm@suse.de +- Update config files for sparc64/net to remove unnecessary options. +* Fri Jun 25 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Fri Jun 25 2010 jbeulich@novell.com +- patches.arch/kvm-split-paravirt-ops-by-functionality: Adjust + Kconfig style to match upstream. +- patches.fixes/seccomp-disable-tsc-option: Adjust Kconfig style + to match upstream. +- patches.suse/SoN-11-mm-reserve.patch: Fix compiler warning. +* Fri Jun 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.35-rc3. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Thu Jun 24 2010 agruen@suse.de +- Replace the nfs4acl patches by their successor patch queue, + richacls (see http://www.suse.de/~agruen/richacl/). +- Update config files: CONFIG_EXT4_FS_RICHACL=y. +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: + ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only + files (bnc#612457 CVE-2010-2066). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-writing-to-non-page-aligned-gfs2_quota-structures: + GFS2: Fix writing to non-page aligned gfs2_quota structures + (bnc#599957 CVE-2010-1436). +* Thu Jun 24 2010 jeffm@suse.de +- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: + GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 + CVE-2010-1641). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jdelvare@suse.de +- patches.drivers/hwmon-it87-fix-in7-on-IT8720F.patch: hwmon: + (it87) Fix in7 on IT8720F (bnc#612910). +* Thu Jun 24 2010 jeffm@suse.de +- btrfs fix rollup from v2.6.35: +- patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: + Btrfs: handle ERR_PTR from posix_acl_from_xattr(). +- patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: + Btrfs: avoid BUG when dropping root and reference in same + transaction. +- patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: + Btrfs: prohibit a operation of changing acl's mask when noacl + mount option used. +- patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: + Btrfs: should add a permission check for setfacl. +- patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: + Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. +- patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: + Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. +- patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: + Btrfs: unwind after btrfs_start_transaction() errors. +- patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: + btrfs_iget() returns ERR_PTR. +- patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: + Btrfs: handle kzalloc() failure in open_ctree(). +- patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: + Btrfs: handle error returns from btrfs_lookup_dir_item(). +- patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: + Btrfs: Fix BUG_ON for fs converted from extN. +- patches.fixes/btrfs-fix-null-dereference-in-relocation-c: + Btrfs: Fix null dereference in relocation.c. +- patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix + remap_file_pages error. +- patches.fixes/btrfs-uninitialized-data-is-check_path_shared: + Btrfs: uninitialized data is check_path_shared(). +- patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix + fallocate regression. +- patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: + fix loop device on top of btrfs. +- patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: + Btrfs: add more error checking to btrfs_dirty_inode. +- patches.fixes/btrfs-allow-unaligned-dio: Btrfs: allow unaligned + DIO. +- patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop + verbose enospc printk. +- patches.fixes/btrfs-fix-block-generation-verification-race: + Btrfs: Fix block generation verification race. +- patches.fixes/btrfs-fix-preallocation-and-nodatacow-checks-in-o_direct: + Btrfs: fix preallocation and nodatacow checks in O_DIRECT. +- patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: + Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. +- patches.fixes/btrfs-move-o_direct-space-reservation-to-btrfs_direct_io: + Btrfs: move O_DIRECT space reservation to btrfs_direct_IO. +- patches.fixes/btrfs-rework-o_direct-enospc-handling: Btrfs: + rework O_DIRECT enospc handling. +- patches.fixes/btrfs-use-async-helpers-for-dio-write-checksumming: + Btrfs: use async helpers for DIO write checksumming. +- patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: + Btrfs: don't walk around with task->state != TASK_RUNNING. +- patches.fixes/btrfs-do-aio_write-instead-of-write: Btrfs: + do aio_write instead of write. +- patches.fixes/btrfs-add-basic-dio-read-write-support: Btrfs: + add basic DIO read/write support. +- patches.fixes/direct-io-add-a-hook-for-the-fs-to-provide-its-own-submit_bio-function: + direct-io: add a hook for the fs to provide its own submit_bio + function. +- patches.fixes/btrfs-metadata-enospc-handling-for-balance: + Btrfs: Metadata ENOSPC handling for balance. +- patches.fixes/btrfs-pre-allocate-space-for-data-relocation: + Btrfs: Pre-allocate space for data relocation. +- patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: + Btrfs: Metadata ENOSPC handling for tree log. +- patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: + Btrfs: Metadata reservation for orphan inodes. +- patches.fixes/btrfs-introduce-global-metadata-reservation: + Btrfs: Introduce global metadata reservation. +- patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: + Btrfs: Update metadata reservation for delayed allocation. +- patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: + Btrfs: Integrate metadata reservation with start_transaction. +- patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: + Btrfs: Introduce contexts for metadata reservation. +- patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill + init_btrfs_i(). +- patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: + Btrfs: Shrink delay allocated space in a synchronized. +- patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: + Kill allocate_wait in space_info. +- patches.fixes/btrfs-link-block-groups-of-different-raid-types: + Btrfs: Link block groups of different raid types. +- patches.fixes/nilfs-fix-breakage-caused-by-barrier-flag-changes: + nilfs: fix breakage caused by barrier flag changes. +- patches.fixes/blkdev-generalize-flags-for-blkdev_issue_fn-functions: + blkdev: generalize flags for blkdev_issue_fn functions. +* Wed Jun 23 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fixed typo. +* Tue Jun 22 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-force_dma: ata_generic: + implement ATA_GEN_* flags and force enable DMA on MBP 7,1 + (bko#15923). +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Tue Jun 22 2010 mmarek@suse.cz +- rpm/config.sh: Build against openSUSE:11.3. +* Tue Jun 22 2010 knikanth@suse.de +- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module + (bnc#615906, bnc#565962). +- patches.suse/dm-raid45_2.6.27_20081027.patch: Delete. +- Sync dm-raid45 to the later version. +* Mon Jun 21 2010 jeffm@suse.de +- Resync v2.6.35 with master. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/acpi-generic-initramfs-table-override-support: + Refresh. +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Refresh. +* Mon Jun 21 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Require a mkinitrd that supports + KMS (bnc#615680). +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap calls + while loading initramfs files. +* Mon Jun 21 2010 jeffm@suse.de +- patches.suse/add-initramfs-file_read_write: Fix missing kmap of + pages for initramfs loading. +* Fri Jun 18 2010 jbeulich@novell.com +- patches.xen/xen3-driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +- Refresh other Xen patches. +- Update Xen config files. +* Thu Jun 17 2010 teheo@suse.de +- patches.drivers/libata-ata_generic-mcp89-mbp71: + ahci,ata_generic: let ata_generic handle new MBP w/ MCP89 + (bko#15923). +* Wed Jun 16 2010 jeffm@suse.de +- Update to 2.6.35-rc3. + - Eliminated 1 patch. +* Mon Jun 14 2010 jslaby@suse.de +- patches.fixes/pci-hotplug-cpqphp-fix-crash.patch: PCI: + hotplug/cpqphp, fix NULL dereference (bnc#609338). +* Wed Jun 09 2010 jeffm@suse.de +- patches.rpmify/ceph-atomic_long-init-fix: ceph: fix atomic64_t + initialization on ia64. +* Tue Jun 08 2010 jeffm@suse.de +- patches.trace/utrace-core: Workaround missing kref_set(). +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/ppc64-xmon-dmesg-printing.patch: Refresh. +* Tue Jun 08 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: Refresh. +- patches.rpmify/wlags49-missing-strlen-include: wlags49_h2: + build fix. +* Tue Jun 08 2010 jeffm@suse.de +- patches.arch/x86_mce_intel_decode_physical_address.patch: + Refresh. +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + Refresh. +* Tue Jun 08 2010 jeffm@suse.com +- supported.conf: Updated dependencies for 2.6.35 +* Mon Jun 07 2010 jeffm@suse.com +- patches.kernel.org/revert-tty-fix-a-little-bug-in-scrup-vt-c: + Revert "tty: fix a little bug in scrup, vt.c". +* Mon Jun 07 2010 jeffm@suse.com +- Update to 2.6.35-rc2. +* Thu Jun 03 2010 jeffm@suse.de +- Re-enable DSDT in initramfs code. +- patches.suse/acpi-don-t-preempt-until-the-system-is-up: acpi: + don't preempt until the system is up. +* Wed Jun 02 2010 bphilips@suse.de +- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED + to fix non-MSI case (bnc#610362). +* Wed Jun 02 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: More -rt fixes. +* Tue Jun 01 2010 jeffm@suse.com +- Update to 2.6.35-rc1. + - Eliminated 13 patches. + - Xen is disabled. +* Tue Jun 01 2010 bphilips@suse.de +- patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch: + tg3: 5785 and 57780 asic revs not working (bnc#580780). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-module-subpackage: Change the kmp versioning to prefix + the kernel version with "k" to avoid false version downgrades + (bnc#609483). +* Tue Jun 01 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: pcre-tools is not needed. +* Mon May 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix for -rt. +* Wed May 26 2010 gregkh@suse.de +- patches.drivers/driver-core-add-devname-module-aliases-to-allow-module-on-demand-auto-loading.patch: + driver core: add devname module aliases to allow module + on-demand auto-loading. +* Tue May 25 2010 jeffm@suse.de +- supported.conf: Added mperf, which powernow and acpi-cpufreq now + depend on. +* Tue May 25 2010 jeffm@suse.com +- patches.arch/powernow-k8-add-core-performance-boost-support: + powernow-k8: Add core performance boost support (bnc#602209). +- patches.arch/x86-cpu-add-amd-core-boosting-feature-flag-to-proc-cpuinfo: + x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo. +- patches.arch/x86-cpufreq-add-aperf-mperf-support-for-amd-processors: + x86, cpufreq: Add APERF/MPERF support for AMD processors + (bnc#602209). +* Tue May 25 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34 final. +- Update Xen config files. +- patches.xen/xen3-acpi_processor_check_maxcpus.patch: Do not + try to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Mon May 24 2010 jbenc@suse.cz +- patches.suse/b43-missing-firmware-info.patch: b43: Change + firmware missing message to refer to openSUSE script. +* Sun May 23 2010 teheo@suse.de +- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI + on VIA K8M800 (bnc#599508). +* Sat May 22 2010 trenn@suse.de +- patches.xen/xen3-auto-common.diff: Refresh. +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +* Sat May 22 2010 trenn@suse.de +- patches.fixes/acpi_processor_check_maxcpus.patch: Do not try + to set up acpi processor stuff on cores exceeding maxcpus= + (bnc#601520). +- patches.fixes/acpi_wmi_debug.patch: X86 platform wmi: Introduce + debug param to log all WMI events (bnc#598059). +- patches.fixes/hp_wmi_fix_acpi_version_integer_size.patch: + x86 platform drivers: hp-wmi fix buffer size depending on ACPI + version (bnc#598059). +- patches.fixes/wmi_debug_pass_guid: X86 platform wmi: Also log + GUID string when an event happens and debug is set (bnc#598059). +- patches.fixes/wmi_dump_wdg_data.patch: X86 platfrom wmi: Add + debug facility to dump WMI data in a readable way (bnc#598059). +* Thu May 20 2010 jeffm@suse.com +- Disabled CONFIG_RT2800PCI (bnc#606243) + - These devices are handled by the rt2860 staging driver. +* Mon May 17 2010 jeffm@suse.com +- patches.fixes/kvm-ioapic.patch: Refresh. +* Mon May 17 2010 jeffm@suse.com +- Update to 2.6.34-final. +* Wed May 12 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix preserving of old symsets. +* Wed May 12 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc7 and c/s 1017. +* Tue May 11 2010 jeffm@suse.com +- Update config files for vanilla. +* Tue May 11 2010 jeffm@suse.com +- Updated to 2.6.34-rc7. + - Eliminated 3 patches. +* Sun May 02 2010 jeffm@suse.com +- Update to 2.6.34-rc6. + - Eliminated 2 patches. +* Sun May 02 2010 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd + (as nfs server uses) on create (bnc#593940). +* Fri Apr 30 2010 trenn@suse.de +- patches.fixes/acpi_ensure_spec_correct_address_space_length.patch: + ACPI/x86/PCI: compute Address Space length rather than using + _LEN (bnc#598641). +* Thu Apr 29 2010 jbeulich@novell.com +- Update -ec2 config files (X86_MSR=m again). +* Thu Apr 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc5-git8 and c/s 1016. +- Update Xen config files. +- patches.xen/xen-kzalloc: use kzalloc() in favor of + kmalloc()+memset(). +- patches.xen/xen-fix_trace_power.patch: Rename to ... +- patches.xen/xen3-x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + ... this. +* Thu Apr 29 2010 knikanth@suse.de +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. + Fix patch to call dm_table_get directly instead of calling + dm_get_table unnecesarily. +* Thu Apr 29 2010 jeffm@suse.com +- Update to 2.6.34-rc5-git8. + - Eliminated 1 patch. +* Wed Apr 28 2010 trenn@suse.de +- patches.xen/xen-fix_trace_power.patch: x86 cpufreq: Make + trace_power_frequency cpufreq driver independent (none). +* Wed Apr 28 2010 mmarek@suse.cz +- Disable CONFIG_FIRMWARE_IN_KERNEL in all configs, we start udev + early enough in the initrd. +* Wed Apr 28 2010 trenn@suse.de +- patches.fixes/acpi-cpufreq_fix_cpu_any_notification.patch: + acpi-cpufreq: Fix CPU_ANY CPUFREQ_{PRE,POST}CHANGE notification + (none). +- patches.trace/x86_cpufreq_make_trace_power_frequency_cpufreq_driver_independent.patch: + x86 cpufreq: Make trace_power_frequency cpufreq driver + independent (none). +* Wed Apr 28 2010 trenn@suse.de +- Update config files. + Unify X86_MSR and X86_CPUID configs: + - CONFIG_X86_CPUID=m + - CONFIG_X86_MSR=y + for all i386 and x86_64 flavors. +* Mon Apr 26 2010 jeffm@suse.com +- Disabled CONFIG_TUNE_CELL on ppc64 (bnc#599045) +* Mon Apr 26 2010 jeffm@suse.com +- Enabled CONFIG_FIREWIRE (bnc#586172) + - CONFIG_IEEE1394 is still enabled but deprecated. +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp_wmi_add_media_key.patch: x86 platform drivers: + hp-wmi Add media key 0x20e8 (bnc#598059). +* Fri Apr 23 2010 trenn@suse.de +- patches.fixes/hp-wmi_detect_keys.patch: x86 platform drivers: + hp-wmi Reorder event id processing (bnc#598059). +- patches.fixes/hp_wmi_catch_unkown_event_key_codes.patch: x86 + platform drivers: hp-wmi Catch and log unkown event and key + codes correctly (bnc#598059). +- patches.fixes/hp_wmi_use_prefix_string.patch: x86 platform + drivers: hp-wmi Use consistent prefix string for messages + (bnc#598059). +* Thu Apr 22 2010 jeffm@suse.com +- patches.suse/s390-Kerntypes.diff: Fix slab.h vs slab_def.h + include ordering in kerntypes.c +* Thu Apr 22 2010 mmarek@suse.cz +- rpm/kernel-*.spec.in: Provide %%name = %%version-%%source_rel in + all spec files (bnc#598453). +* Thu Apr 22 2010 tiwai@suse.de +- Update config files: Fix remaining CONFIG_LEDS_CLASS=m +* Thu Apr 22 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + Refresh. Fix dependency with LED class. +- Update config files. +* Wed Apr 21 2010 tiwai@suse.de +- patches.drivers/input-Add-LED-support-to-Synaptics-device: + input: Add LED support to Synaptics device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/input-Add-support-of-Synaptics-Clickpad-device: + input: Add support of Synaptics Clickpad device + (bnc#547370,bnc#582529,bnc#589014). +- patches.drivers/synaptics-hp-clickpad: Delete. +* Wed Apr 21 2010 jeffm@suse.com +- Update to 2.6.34-rc5. + - Eliminated 1 patch. +* Tue Apr 20 2010 jack@suse.de +- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize + super-block with standard macros. +- patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: + fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty + folder (bnc#583964). +* Mon Apr 19 2010 jeffm@suse.de +- patches.fixes/x86-apbt-conditionally-register-cpu-hp-notifier-for-apbt: + x86/apbt: conditionally register cpu hp notifier for apbt + (bko#15786). +* Thu Apr 15 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc4 and c/s 1011. +- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does + not return info about xennet driver (bnc#591179). +- patches.xen/xen-no-reboot-vector: eliminate REBOOT_VECTOR. +- patches.xen/xen-x86_64-kern_addr_valid: x86-64: + kern_addr_valid() must not walk page tables mapping hypervisor + space (bnc#591371). +- Update Xen config files. +- supported.conf: drivers/xen/evtchn.ko is supported. +* Thu Apr 15 2010 teheo@suse.de +- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: + fix locking around blk_abort_request() (bnc#585927). +* Wed Apr 14 2010 jeffm@suse.de +- Update to 2.6.34-rc4. + - Eliminated 3 patches. +* Tue Apr 13 2010 mmarek@suse.cz +- Update vanilla config files. +* Tue Apr 13 2010 tiwai@suse.de +- patches.suse/bootsplash-console-fix: Fix rendering on linux + console with bootsplash (bnc#595657,bnc#594209). +* Tue Apr 13 2010 agraf@suse.de +- Update config files to disable KVM on PPC also for ppc/ppc64. +* Tue Apr 13 2010 teheo@suse.de +- Update config files to disable CONFIG_DEBUG_BLOCK_EXT_DEVT which was + enabled by 5246824c to ease testing userland handling of ext devt. +* Mon Apr 12 2010 jslaby@suse.de +- patches.fixes/hibernation-fix-s2disk.patch: PM / Hibernate: + user.c, fix SNAPSHOT_SET_SWAP_AREA handling (bko#15728). +* Mon Apr 12 2010 jack@suse.de +- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove + dcache count restricting code (bnc#576026). +* Mon Apr 12 2010 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: Refresh (bnc#588458). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: Fix issue on + 32-bit systems. +* Fri Apr 09 2010 knikanth@suse.de +- patches.fixes/loop-update-mtime.patch: loop: Update mtime when + writing using aops (bnc#590738). +* Fri Apr 09 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: + reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 + CVE-2010-1146). +* Thu Apr 08 2010 agraf@suse.de +- Update PPC config files to disable KVM on PPC. It's not ready yet. + Please enable it again as soon as we hit 2.6.35. +* Wed Apr 07 2010 jengelh@medozas.de +- Add config/sparc64/net that is light on size. For netbooting, + both the kernel and initrd must fit into 10MB. +* Wed Mar 31 2010 jeffm@suse.de +- Updated sparc64 config. +* Wed Mar 31 2010 jeffm@suse.de +- Update to 2.6.34-rc3. +* Wed Mar 31 2010 mmarek@suse.cz +- doc/README.SUSE: Update some obsolete information. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-docs.spec.in: Fix path to kernel source. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/configtool.pl, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Add support for custom config options + in config.addon.tar.bz2. This tarball is expected to have the + same layout as config.tar.bz2 and the config options listed there + take precedence over config.tar.bz2. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generate the chmod +x line automatically. +* Wed Mar 31 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: + Generate the Source: lines from kernel-source.spec.in. +* Tue Mar 30 2010 jeffm@suse.de +- patches.fixes/reiserfs-remove-2-tb-file-size-limit: reiserfs: + Remove 2 TB file size limit (bnc#592100). +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/mkspec: + Generated the NoSource and %%setup lines automatically from the + preamble. +* Tue Mar 30 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Provide $pkg = %%version-%%source_rel + in kernel-devel and kernel-source-vanilla. +* Mon Mar 29 2010 jeffm@suse.de +- patches.fixes/reiserfs-fix-locking-BUG-during-mount-failure: + reiserfs: Fix locking BUG during mount failure (bnc#591807). +* Mon Mar 29 2010 jeffm@suse.de +- Disabled MAX63XX_WATCHDOG on s390. +* Mon Mar 29 2010 jeffm@suse.de +- Update to 2.6.34-rc2-git3. + - Eliminated 1 patch. + - Fixed ps3 config. +* Mon Mar 29 2010 jbeulich@novell.com +- Update Xen patches to 2.6.34-rc2 and c/s 1007. +- Update config files. +- config.conf: Re-enable Xen configs. +- patches.xen/xen-floppy: Xen: improve floppy behavior + (bnc#584216). +- patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver + to be loaded automatically. +- patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to + be loaded automatically (bnc#584213). +* Fri Mar 26 2010 jkosina@suse.cz +- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in + gyration_event() (bnc#589329). +* Fri Mar 26 2010 jack@suse.de +- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an + oops in novfs scope-finding code (bnc#588579). +* Thu Mar 25 2010 jeffm@suse.de +- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: + powerpc: fix handling of strnlen with zero len (bnc#582681). +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/lpfc-add-raywire-id: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/linux-2.6.29-kms-after-sata.patch: Refresh. +* Tue Mar 23 2010 jeffm@suse.de +- patches.fixes/do_anonymous_page-race: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.drivers/libata-prefer-over-ide: Delete. +- patches.drivers/libata-ahci-aspire-3810t-noncq: Delete. +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: Delete. +- patches.suse/block-add-mangle-devt-switch: Delete. +* Tue Mar 23 2010 jeffm@suse.de +- patches.suse/apm_setup_UP.diff: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: Delete. +- patches.arch/ppc-efika-mpc52xx-ac97.patch: Delete. +- patches.arch/ppc-efika-psc-console-autodetection.patch: Delete. +- patches.suse/suse-ppc32-mol-BIT: Delete. +- patches.suse/suse-ppc32-mol-get-property: Delete. +- patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. +- patches.suse/suse-ppc32-mol-ioctl: Delete. +- patches.suse/suse-ppc32-mol-kbuild.patch: Delete. +- patches.suse/suse-ppc32-mol-semaphore: Delete. +- patches.suse/suse-ppc32-mol-sheep: Delete. +- patches.suse/suse-ppc32-mol.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/dlm-enable-debug.patch: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.fixes/ds1682-build-fix: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/kvm-as-kmp: Delete. +* Mon Mar 22 2010 jeffm@suse.de +- patches.suse/xfs-dmapi-fix-incompatible-pointer-type-warning: + xfs/dmapi: fix incompatible pointer type warning. +* Mon Mar 22 2010 jeffm@suse.de +- Updated to 2.6.34-rc2. + - Eliminated 4 patches. +* Fri Mar 19 2010 jbohac@suse.cz +- set CONFIG_IPV6=y for all flavours (bnc#561611) +* Thu Mar 18 2010 jeffm@suse.de +- Refreshed patch series. +* Wed Mar 17 2010 jeffm@suse.de +- Updated to 2.6.34-rc1-git6. + - Eliminated 8 patches. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Remove Obsoletes: for 10.3 KMPs. +* Tue Mar 16 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the + sle11-ga group and make the comment more explanatory. +* Tue Mar 16 2010 trenn@suse.de +- rpm/kernel-binary.spec.in: + bnc#587578 +* Thu Mar 11 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Thu Mar 11 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + Fix unintialized variable. Refresh. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/gpio/max730x, max7301 now + depends on it. +* Wed Mar 10 2010 jeffm@suse.de +- Enabled CONFIG_DRM_RADEON_KMS; Matching KMS-enabled X.org has + been committed to Factory. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-kvm-build-failure-workaround: powerpc: + kvm build failure workaround. +* Wed Mar 10 2010 jeffm@suse.de +- patches.rpmify/powerpc-mpc52xx-build-fix: powerpc: Build fix + for mpc52xx. +* Wed Mar 10 2010 jeffm@suse.de +- supported.conf: Added kernel/drivers/i2c/i2c-smbus, i2c-parport + now depends on it. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: the dwarfextract package has been + dropped from Factory. +* Wed Mar 10 2010 jeffm@suse.de +- Update config files for vanilla. +* Wed Mar 10 2010 jdelvare@suse.de +- supported.conf: Add hwmon/ams back. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels. +* Wed Mar 10 2010 mmarek@suse.cz +- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm. +* Wed Mar 10 2010 jeffm@suse.de +- Updated to 2.6.34-rc1. + - Eliminated 36 patches. + - Xen is disabled + - Added new doc/config-options.changes to document configuration + changes. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Package symsets in the -devel package. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides: Do not generate ksym(...) provides. +* Tue Mar 09 2010 mmarek@suse.cz +- rpm/find-provides, rpm/symsets.pl: Generate symsets again + (bnc#582907). +* Fri Mar 05 2010 knikanth@suse.de +- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: + xfs: Non-blocking inode locking in IO completion (bnc#568319). +* Fri Mar 05 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: split devel files and full source + into two rpms, of which only the former is really required for + KMP building +* Fri Mar 05 2010 jengelh@medozas.de +- add configs/sparc64/default +* Wed Mar 03 2010 tonyj@suse.de +- patches.trace/powerpc-rename-irq-tracing: should have been deleted by + previous commit +* Wed Mar 03 2010 tonyj@suse.de +- remove perfmon2 patches +* Wed Mar 03 2010 tonyj@suse.de +- Remove lttng-instrumentation patches, they have been removed from + SLE11SP1 +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Tue Mar 02 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33 and c/s 1003. +- patches.xen/xen-clockevents: replace Xen's custom time handling + with such using GENERIC_CLOCKEVENTS infrastructure. +- Update Xen config files. +* Tue Mar 02 2010 nfbrown@suse.de +- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic + time in expiry cache (bnc#578668). +* Thu Feb 25 2010 jeffm@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: Obsolete. +* Thu Feb 25 2010 mmarek@suse.cz +- Drop include of generated/autoconf.h in our patches, it's not + needed since 2.6.15: +- patches.suse/novfs-client-module: Refresh. +- patches.suse/s390-Kerntypes.diff: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +* Thu Feb 25 2010 teheo@suse.de +- scripts/run_oldconfig.sh doesn't update ppc/vanilla for some reason. + Do it manually. +* Thu Feb 25 2010 teheo@suse.de +- ppc explicitly sets CONFIG_LEDS_TRIGGER_IDE_DISK. Run + scripts/run_oldconfig.sh to fix configs up. +* Thu Feb 25 2010 teheo@suse.de +- Drop CONFIG_IDE from all configs. +* Thu Feb 25 2010 jeffm@suse.com +- patches.xen/xen3-patch-2.6.33-rc8-final: Build fix for the + 2.6.33-final update. +* Wed Feb 24 2010 jeffm@suse.de +- Updated to 2.6.33-final. + - Eliminated 4 patches. +* Wed Feb 24 2010 jeffm@suse.de +- patches.rpmify/ftrace-fix-ftrace_event_call-alignment-for-use-with-gcc-4-5: + ftrace: fix ftrace_event_call alignment for use with gcc 4.5 + (bnc#582222). +* Wed Feb 24 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc8 and c/s 997. +- patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data + into a structure. +- patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock + (bnc#569014, bnc#571041, bnc#571769, bnc#572146). +* Wed Feb 24 2010 jengelh@medozas.de +- rpm/kernel-source.spec.in: use macros in a few more places +* Tue Feb 23 2010 jack@suse.de +- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when + looking up inode (bnc#486997). +- patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs + reports incorrect file size (bnc#426536). +- patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of + OO documents on NSS Volumes (bnc#508259). +* Sun Feb 21 2010 jengelh@medozas.de +- use standard short options in tar commands +* Wed Feb 17 2010 nfbrown@suse.de +- patches.fixes/nfs-find-crash: Fix potential oops when running + find on an NFS mount. (bnc#573107). +* Tue Feb 16 2010 jeffm@suse.com +- Set CONFIG_LSM_MMAP_MIN_ADDR=4096 to allow qemu to emulate + other architectures properly (bnc#574654). +* Tue Feb 16 2010 jeffm@suse.com +- Update to 2.6.33-rc8. + - Eliminated 1 patch. +* Mon Feb 15 2010 rgoldwyn@suse.de +- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local + (bnc#569071). +* Fri Feb 12 2010 trenn@suse.de +- Update config files. + Enable p4_clockmod for i386 desktop + While this is broken by design it allows to remove clocking + limits from the vendor on e.g. eeepc 701 +* Fri Feb 12 2010 jeffm@suse.com +- patches.fixes/taskstats-alignment: delayacct: align to 8 byte + boundary on 64-bit systems (bnc#578065). +* Fri Feb 12 2010 trenn@suse.de +- patches.fixes/acpi_fix_no_critical_tp.patch: ACPI thermal: + Don't invalidate thermal zone if critical trip point is bad + (bnc#531547). +- patches.fixes/acpi_pci_hot_plug_sanity_checks.patch: ACPI: + acpi_bus_{scan,bus,add}: return -ENODEV if no device was found + (bnc#531547). +- patches.fixes/acpi_thermal_check_trip_points.patch: ACPI + thermal: Check for thermal zone requirement (bnc#531547). +* Fri Feb 12 2010 jdelvare@suse.de +- supported.conf: saa7111 and saa7114 are gone. +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: + kdb: fix kdb_cmds to include the arch common macro (bnc#578421). +* Wed Feb 10 2010 jeffm@suse.com +- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: + handle nonexistance keyboard controller (bnc#578051). +* Wed Feb 10 2010 gregkh@suse.de +- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: + l64781.ko broken with gcc 4.5. +* Tue Feb 09 2010 jeffm@suse.com +- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: + apparmor: check for network in interrupt and work around + (bnc#492961, bln#350789). +* Tue Feb 09 2010 jeffm@suse.com +- Update to 2.6.33-rc7. + - Eliminated 1 patch. +* Tue Feb 09 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: + ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x + codecs (bnc#578190). +* Mon Feb 08 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: + ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts + (bnc#577927). +- patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: + hda - Merge HP mute-LED status callback on both IDT 92HD7x + and 8x codecs (bnc#577927). +- patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: + ALSA: hda - Remove static gpio_led setup via model (bnc#577927). +* Fri Feb 05 2010 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: Delete from repo and series.conf. + Back to 32bytes lvb length for clvm (bnc#573460). +* Fri Feb 05 2010 duwe@suse.de +- Update config files: Compile IBM_BSR into kernel, not as module. + (ppc only, bnc#572381) +* Fri Feb 05 2010 duwe@suse.de +- patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields + to ibm,client-architecture call (bnc#570909). +- patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more + accurate number of supported cores to firmware (bnc#570909). +* Fri Feb 05 2010 coly.li@suse.de +- disable patches.suse/64bytes_lvb_len.diff in series.conf +* Thu Feb 04 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous + hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid + stripping symbols from the ppc vmlinux image (bnc#572148). +* Thu Feb 04 2010 knikanth@suse.de +- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL + if stripe count is zero (bnc#576312). +* Thu Feb 04 2010 npiggin@suse.de +- Disable patches.suse/files-slab-rcu.patch. +* Thu Feb 04 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp + (bnc#559533). +* Thu Feb 04 2010 tiwai@suse.de +- supported.conf: mark snd-wss-lib unsupported +* Thu Feb 04 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: + ALSA: hda - Adding support for another IDT 92HD83XXX codec + (bnc#569354). +* Wed Feb 03 2010 jbohac@suse.cz +- supported.conf: marked em_cmp supported (bnc#568130) +* Wed Feb 03 2010 mmarek@suse.cz +- rpm/kernel-binary.spec.in: automatically install a matching + -devel package if kernel-source is installed. +* Wed Feb 03 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc6 and c/s 989. +- patches.xen/xen-netback-generalize: Netback: Generalize + static/global variables into 'struct xen_netbk'. +- patches.xen/xen-netback-kernel-threads: Use Kernel thread to + replace the tasklet. +- patches.xen/xen-netback-multiple-tasklets: Netback: + Multiple tasklets support. +* Tue Feb 02 2010 jkosina@suse.cz +- patches.suse/suse-ppc64-branding: the message about crashed kernel + doesn't make sense any more with CONFIG_CRASH_DUMP enabled by + default (bnc#575884). +* Sat Jan 30 2010 jeffm@suse.com +- Update to 2.6.33-rc6. + - Eliminated 12 patches. +* Sat Jan 30 2010 jeffm@suse.com +- patches.rpmify/hugetlbfs-fix-section-mismatches: Removed __init + from hugetlb_sysfs_add_hstate instead of adding it elsewhere. +* Sat Jan 30 2010 jslaby@suse.de +- patches.suse/kdb-common: Fix hid crash (bnc#570591) +* Fri Jan 29 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: + hda - Add support for IDT 92HD88 family codecs (bnc#569354). +* Fri Jan 29 2010 jkosina@suse.cz +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + Update patch-mainline tag. +* Fri Jan 29 2010 jbenc@suse.cz +- Update config files: fixed vanilla configs. +* Thu Jan 28 2010 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: + hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec + (bnc#569354). +* Thu Jan 28 2010 jbeulich@novell.com +- patches.suse/supported-flag: Fix -ec2 build. +- patches.suse/supported-flag-enterprise: Refresh. +- patches.xen/xen3-patch-2.6.33-rc3: Fix ia64 build. +* Thu Jan 28 2010 jbeulich@novell.com +- Update Xen patches to 2.6.33-rc5 and c/s 987. +- config.conf: Re-enable Xen. +- Update config files. +* Thu Jan 28 2010 jbenc@suse.cz +- Update config files: enabled CONFIG_CFG80211_WEXT to keep backward + user space compatibility and enabled few wireless drivers. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: Add support for an additional series file in + patches.addon/series, this will be applied after the main series. +* Thu Jan 28 2010 mmarek@suse.cz +- rpm/apply-patches: put the patch loops from kernel-binary.spec.in + and kernel-source.spec.in to one place. +* Wed Jan 27 2010 jeffm@suse.de +- Deleted 28 unused patches. +* Wed Jan 27 2010 jeffm@suse.com +- Update config files. +* Wed Jan 27 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 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 2010 jengelh@medozas.de +- remove patches.suse/netfilter-ipv4options [bnc#490142] +* Wed Jan 27 2010 jeffm@suse.com +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. +* Tue Jan 26 2010 knikanth@suse.de +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) +* Mon Jan 25 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 2010 jeffm@suse.com +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) +* Mon Jan 25 2010 npiggin@suse.de +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). +* Mon Jan 25 2010 jeffm@suse.com +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. +* Mon Jan 25 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 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 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 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 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 2010 bphilips@suse.de +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). +* Sat Jan 23 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 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 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 2010 tonyj@suse.de +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. +* Fri Jan 22 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 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 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 2010 trenn@suse.de +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default +* Fri Jan 22 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 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 2010 bphilips@suse.de +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). +* Fri Jan 22 2010 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. +* Thu Jan 21 2010 astarikovskiy@suse.de +- supported.conf: added power_meter driver (FATE #306959). +* Thu Jan 21 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 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 2010 jbeulich@novell.com +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. +* Thu Jan 21 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) +* Wed Jan 20 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 2010 jslaby@suse.de +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) +* Wed Jan 20 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 2010 jbeulich@novell.com +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. +* Wed Jan 20 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 2010 gregkh@suse.de +- Update config files. 2.6.32.4 changed one of them. +* Wed Jan 20 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). +* Tue Jan 19 2010 jeffm@suse.com +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. +* Tue Jan 19 2010 gregkh@suse.de +- Patch refresh for fuzz due to upstream -stable additions. +* Tue Jan 19 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 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 2010 tiwai@suse.de +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) +* Tue Jan 19 2010 jkosina@suse.cz +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). +* Tue Jan 19 2010 jkosina@suse.cz +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). +* Tue Jan 19 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 2010 jeffm@suse.de +- patches.suse/smtnice-disable: Delete (obsolete). +* Mon Jan 18 2010 jeffm@suse.com +- Disabled custom ACPI table loading from initramfs again. +* Mon Jan 18 2010 jeffm@suse.com +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. +* Mon Jan 18 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 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 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 2010 tonyj@suse.de +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). +* Sat Jan 16 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 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 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 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 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 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 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/reiser4-sync_inodes: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 2010 jeffm@suse.com +- patches.suse/smtnice-disable: Updated to 2.6.33. +* Fri Jan 15 2010 jeffm@suse.com +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). +* Fri Jan 15 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 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 2010 jeffm@suse.com +- patches.suse/add-initramfs-file_read_write: Build fix. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-enterprise: Refresh. +* Thu Jan 14 2010 jeffm@suse.com +- patches.suse/supported-flag-sysfs: Properly report proprietary modules +* Thu Jan 14 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 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 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 2010 mmarek@suse.de +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. +* Thu Jan 14 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). +* Thu Jan 14 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). +* Thu Jan 14 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 2010 jeffm@suse.com +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io +* Wed Jan 13 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 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 2010 jeffm@suse.com +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call +* Wed Jan 13 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 2010 jeffm@suse.com +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix +* Wed Jan 13 2010 jeffm@suse.com +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. +* Tue Jan 12 2010 jeffm@suse.com +- Update config files. +* Tue Jan 12 2010 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix +* Tue Jan 12 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 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 2010 rjw@suse.de +- needs_update: Remove some patches that we've got through the + upstream. +* Tue Jan 12 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 2010 jeffm@suse.com +- Update to 2.6.33-rc3-git5. +* Tue Jan 12 2010 trenn@suse.de +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). +* Tue Jan 12 2010 jack@suse.de +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). +* Tue Jan 12 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 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 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 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 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 2010 jeffm@suse.com +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations +* Mon Jan 11 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 2010 jeffm@suse.com +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches +* Mon Jan 11 2010 jeffm@suse.de +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. +* Mon Jan 11 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 2010 jblunck@suse.de +- needs_update: Removed some patches. +* Mon Jan 11 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 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 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 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 2010 hare@suse.de +- patches.fixes/qla4xxx-lun-reset-fix: Delete. +* Mon Jan 11 2010 hare@suse.de +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). +* Sat Jan 09 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 09 2010 jkosina@suse.cz +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. +* Fri Jan 08 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 08 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 08 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 08 2010 jeffm@suse.de +- Disable set,getprlimit compat syscalls on xen. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. +* Fri Jan 08 2010 jeffm@suse.de +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. +* Fri Jan 08 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 07 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 07 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 07 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 06 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 06 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 06 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 06 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 06 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 06 2010 gregkh@suse.de +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +* Wed Jan 06 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 05 2010 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version +* Wed Dec 30 2009 nfbrown@suse.de +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). +* Mon Dec 28 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 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). +* Thu Dec 24 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 2009 rjw@suse.de +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). +* Wed Dec 23 2009 jeffm@suse.com +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. +* Wed Dec 23 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 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 2009 jeffm@suse.com +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). +* Tue Dec 22 2009 jeffm@suse.com +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). +* Sun Dec 20 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 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 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 2009 gregkh@suse.de +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import +* Sat Dec 19 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 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 2009 gregkh@suse.de +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) +* Fri Dec 18 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 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 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. +* Fri Dec 18 2009 nfbrown@suse.de +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). +* Fri Dec 18 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 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). +* Fri Dec 18 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 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 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 2009 gregkh@suse.de +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) +* Wed Dec 16 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 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 2009 npiggin@suse.de +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). +* Wed Dec 16 2009 npiggin@suse.de +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. +* Wed Dec 16 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 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 2009 mmarek@suse.cz +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. +* Tue Dec 15 2009 knikanth@suse.de +- supported.conf: Mark dm-log-userspace as supported (fate#307380). +* Tue Dec 15 2009 sjayaraman@suse.de +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. +* Tue Dec 15 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 2009 gregkh@suse.de +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) +* Tue Dec 15 2009 gregkh@suse.de +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) +* Mon Dec 14 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 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 2009 gregkh@suse.de +- Refresh patches to be clean of fuzz +* Mon Dec 14 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 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 2009 mmarek@suse.cz +- rpm/kabi.pl: Do not print harmless kabi changes by default. +* Mon Dec 14 2009 sjayaraman@suse.de +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). +* Mon Dec 14 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). +* Mon Dec 14 2009 rjw@suse.de +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). +* Sat Dec 12 2009 mmarek@suse.cz +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. +* Sat Dec 12 2009 mmarek@suse.cz +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. +* Fri Dec 11 2009 jeffm@suse.com +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. +* Fri Dec 11 2009 trenn@suse.de +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). +* Fri Dec 11 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 2009 hare@suse.de + Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Dec 11 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 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 2009 tiwai@suse.de +- Update config files: set back to CONFIG_SOUND=m +* Fri Dec 11 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 2009 jeffm@suse.de +- patches.suse/kdb-usb-rework: Fix ia64. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files: Enable USB_SERIAL_DEBUG. +* Fri Dec 11 2009 jeffm@suse.com +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. +* Fri Dec 11 2009 jeffm@suse.com +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. +* Thu Dec 10 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 2009 bphilips@suse.de +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz +* Thu Dec 10 2009 jeffm@suse.com +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. +* Thu Dec 10 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) +* Thu Dec 10 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 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 2009 hare@suse.de +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. +* Thu Dec 10 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 2009 duwe@suse.de +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. +* Thu Dec 10 2009 jbenc@suse.cz +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. +* Thu Dec 10 2009 hare@suse.de +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin +* Wed Dec 09 2009 tonyj@suse.de +- patches.suse/audit-export-logging.patch: export audit logging + symbols. +* Wed Dec 09 2009 jbohac@suse.cz +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace +* Wed Dec 09 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 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. +* Wed Dec 09 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 09 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 09 2009 bphilips@suse.de +- needs_update: patches moved upstream or obsoleted by upstream +* Tue Dec 08 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 08 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 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). +* Tue Dec 08 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 08 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 08 2009 rgoldwyn@suse.de +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). +* Tue Dec 08 2009 npiggin@suse.de +- needs_update: most of mine are merged. apparmor patch sent to Andreas. +* Tue Dec 08 2009 coly.li@suse.de +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) +* Tue Dec 08 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 07 2009 tiwai@suse.de +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). +* Mon Dec 07 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 07 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 07 2009 hare@suse.de +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. +* Sat Dec 05 2009 tonyj@suse.de +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. +* Fri Dec 04 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 04 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 04 2009 jjolly@suse.de +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). +* Fri Dec 04 2009 mmarek@suse.cz +- supported.conf: Update wireless drivers. +* Fri Dec 04 2009 jjolly@suse.de +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). +* Fri Dec 04 2009 hare@suse.de +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). +* Fri Dec 04 2009 mmarek@suse.cz +- rpm/package-descriptions: Add description for kernel-vmi. +* Fri Dec 04 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 04 2009 mmarek@suse.cz +- Add the vmi flavor again. +* Fri Dec 04 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 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402) +* Fri Dec 04 2009 gregkh@suse.de +- Update config files. + CONFIG_DRM_I915_KMS=y for i386 (bnc#560402) +* Thu Dec 03 2009 jeffm@suse.com +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: + Delete. (bnc#560043) +* Thu Dec 03 2009 jeffm@suse.com +- Cleanup config files. +* Thu Dec 03 2009 bphilips@suse.de +- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 + phylib and tg3 changes due to 2.6.32 bump. +* Thu Dec 03 2009 duwe@suse.de +- back out cpuidle feature that is still unconsistent. +* Thu Dec 03 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + Fix the "fixed" feature patch set from IBM. +* Thu Dec 03 2009 mfasheh@suse.com +- Update config files. +- patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator + mounts for migration to ocfs2 (FATE#307584). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for 2.6.32 (again). +* Thu Dec 03 2009 duwe@suse.de +- Update config files for cpuidle. +* Thu Dec 03 2009 tiwai@suse.de +- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add + new Wacom devices (bnc#544763). +* Thu Dec 03 2009 duwe@suse.de +- patches.suse/cpuidle-cleanup: Refresh. + one lonely hunk already seems to be in 2.6.32 final +* Thu Dec 03 2009 duwe@suse.de +- bnc#552860 / FATE#307104: kernel idle low power, take 2: +- patches.suse/cpuidle-cleanup: Refresh. +- patches.suse/cpuidle-cleanup-x86: Refresh. +- patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh. +* Thu Dec 03 2009 jeffm@suse.com +- Updated to 2.6.32-final. + - 2 patches eliminated. +* Thu Dec 03 2009 hare@suse.de +- Update config files: Enable Hibernation for zSeries. +* Thu Dec 03 2009 mmarek@suse.cz +- Update config files: Disable CONFIG_MFD_PCF50633, the chip is + unlikely to be used on architectures we support. +* Thu Dec 03 2009 mmarek@suse.cz +- rpm/split-modules: Print which supported modules need unsupported + modules. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: support lis3lv02d, hp_accel needs it. +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: hp_accel is supported (FATE #306448). +* Thu Dec 03 2009 jdelvare@suse.de +- supported.conf: remove wm831x drivers, we no longer ship them. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable all new hwmon drivers on ppc + (default and vanilla) for consistency. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on. +* Thu Dec 03 2009 mmarek@suse.cz +- supported.conf: Fix up after commit bfea0bd. +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: disable WM831x and WM8350 support entirely, + as recommended by the drivers author. These devices are only + found on embedded devices such as music players or mobile phones. +* Thu Dec 03 2009 hare@suse.de +- supported.conf: Mark pmcraid and igbvf as supported; + OSD drivers as unsupported. +* Thu Dec 03 2009 jdelvare@suse.de +- Restore link from config/s390/vanilla to config/s390x/vanilla. +* Thu Dec 03 2009 jbeulich@novell.com +- supported.conf: Update Xen drivers. +* Thu Dec 03 2009 tonyj@suse.de +- needs_update: readd + patches.suse/perfmon2-remove_get_base_syscall_attr.patch + patches.suse/perfmon2-remove_syscalls.patch +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi +* Thu Dec 03 2009 gregkh@suse.de +- rpm/post.sh: +- rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader +* Thu Dec 03 2009 jdelvare@suse.de +- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, + i2c-simtec and i2c-designware. +- supported.conf: remove i2c-simtec. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Add all new hwmon and i2c/busses drivers. The + former unsupported, the latter supported. +* Wed Dec 02 2009 jdelvare@suse.de +- Update config files: disable CONFIG_I2C_VOODOO3. +- supported.conf: drop i2c-voodoo3, superseded by tdfxfb. +* Wed Dec 02 2009 jdelvare@suse.de +- supported.conf: Drop hwmon and i2c/chips drivers which have been + obsoleted. +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp. +* Wed Dec 02 2009 mmarek@suse.cz +- supported.conf: Add perfmon, hid and input modules. +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: Fix vanilla configs +* Wed Dec 02 2009 tiwai@suse.de +- Update config files: disabled CONFIG_SND_SOC* in ppc configs. +* Wed Dec 02 2009 tiwai@suse.de +- Updated the sound section of supported.conf +* Wed Dec 02 2009 gregkh@suse.de +- Update config files. disable USB OTG drivers that should not + have been enabled. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: remove some usb drivers that were deleted or renamed. +* Wed Dec 02 2009 gregkh@suse.de +- supported.conf: update usb driver section +* Wed Dec 02 2009 mmarek@suse.cz +- rpm/check-supported-list: Skip modules in Documentation and + drivers/staging. +* Wed Dec 02 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix + remote DoS (bnc#558267). +* Tue Dec 01 2009 tiwai@suse.de +- Forward-port 11.2 patches: + patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - + Add a position_fix quirk for MSI Wind U115. + patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: + hda - Fix Cxt5047 test mode (bnc#559062). + patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: + hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). + patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: + ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935). +* Tue Dec 01 2009 jeffm@suse.com +- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: + megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 + CVE-2009-3939). +* Tue Dec 01 2009 jeffm@suse.com +- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: + x86-64: add comment for RODATA large page retainment + (bnc#558249). +- patches.arch/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.arch/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). +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop libata patches which are already included in + 2.6.31 vanilla. +* Mon Nov 30 2009 teheo@suse.de +- needs_update: drop patches which are already included in 2.6.31 + vanilla. +* Mon Nov 30 2009 teheo@suse.de + Forward port two x86 patches from SLE11. +- needs_update: +- patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829). +- patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829). +* Mon Nov 30 2009 agraf@suse.de +- Update config files: Enable KSM (FATE#306513) +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: acpi dock patch was hmacht's, not mine +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: sysfs debugging crash patch is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: jeffm merged novfs patches into the main novfs patch. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: qualcomm modem driver is upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: squashfs is now upstream +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: via driver bugfixes never went upstream, and people + are complaining about them, so they were dropped. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove staging driver entries, they are all upstream. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove hv driver entries, those are upstream now. +* Sat Nov 28 2009 gregkh@suse.de +- needs_update: remove xen patches with my name on it. Just because + I refreshed the patch, doesn't mean I own it or even like the + thing :) +* Sat Nov 28 2009 sjayaraman@suse.de +- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace + and ppc64 flavors. +* Fri Nov 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Abort if supported modules depend on + unsupported ones. +* Fri Nov 27 2009 mmarek@suse.cz +- supported.conf: mark cnic as supported (needed by bnx2i). +* Fri Nov 27 2009 jbenc@suse.cz +- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API + fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. +* Fri Nov 27 2009 jbohac@suse.cz +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +* Fri Nov 27 2009 trenn@suse.de +- needs_update: + One I still have to send upstream, but it's nicer error output + only, SP1 is fine in respect to removing all these, thanks. +* Fri Nov 27 2009 hare@suse.de +- Update config files: Compile in efivars module for + x86_64 (FATE#306931). +* Fri Nov 27 2009 sjayaraman@suse.de +- needs_update: sjayaraman's patches are either upstream already or + rebased to SP1. +* Fri Nov 27 2009 sjayaraman@suse.de +- Update config files: NFS_SWAP=y. +* Fri Nov 27 2009 sjayaraman@suse.de +- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix + a build failure with fuzz factor 0. +* Fri Nov 27 2009 sjayaraman@suse.de +- Rebase Swap-over-NFS(SoN) patches: +- patches.xen/tmem: Refresh to accomodate changes due to SoN patches. +- patches.xen/xen3-auto-common.diff: Refresh to accomodate changes + due to SoN patches. +* Fri Nov 27 2009 knikanth@suse.de +- needs_update: Verify knikanth's patches in SLE11 but not in SP1 +- patches.fixes/dm-release-map_lock-before-set_disk_ro: Release + md->map_lock before set_disk_ro (bnc#556899 bnc#479784). +* Fri Nov 27 2009 nfbrown@suse.de +- Restore following patches from SLES11 that are still needed for + SLES11-SP1 +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + sunrpc/cache: allow thread to block while waiting for cache + update. (bnc#498708). +- patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: + sunrpc/cache: retry cache lookups that return -ETIMEDOUT + (bnc#498708). +- patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: + nfsd/idmap: drop special request deferal in favour of improved + default. (bnc#498708). +- patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous + nfsd patch series (bnc#498708). +* Thu Nov 26 2009 coly.li@suse.de +- needs_update: remove patches item of coly.li, lmb and mfasheh. +- patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 + to SLES11 SP1 tree. +* Thu Nov 26 2009 jslaby@suse.cz +- patches.fixes/make-note_interrupt-fast.diff: Fix performance + regression on large IA64 systems (bnc #469589). +* Thu Nov 26 2009 mmarek@suse.cz +- rpm/old-packages.conf: obsolete kernel-kdump on ppc. +- config.conf: delete kdump configs. +- config/ppc/kdump: Delete. +- config/ppc64/kdump: Delete. +* Thu Nov 26 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: + Refresh. Fix "typo", memory_sysdev_class should be exported + only to GPL'ed modules. +* Thu Nov 26 2009 hare@suse.de + Fixup patches for series2git: +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 duwe@suse.de +- config.conf: disable build of ppc kdump flavours + (FATE#304346) +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/libata-missing-_SDD-is-not-an-error: + libata-acpi: missing _SDD is not an error (bnc#551942). +* Thu Nov 26 2009 jbenc@suse.cz +- patches.fixes/mac80211-fix-spurious-delba-handling.patch: + mac80211: fix spurious delBA handling (bnc#558267, + CVE-2009-4026, CVE-2009-4027). +* Thu Nov 26 2009 tiwai@suse.de +- patches.drivers/sky2-add-register-definitions: sky2: add + register definitions for new chips (bnc#544760). +- patches.drivers/sky2-88E8059-support: sky2: 88E8059 support + (bnc#544760). +- patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 + Optima TCP offload setup (bnc#544760). +- patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing + TST_CFG_WRITE bits around sky2_pci_write (bnc#544760). +* Thu Nov 26 2009 nfbrown@suse.de +- Update config files. + disable CONFIG_MULTICOE_RAID456 as it is not yet stable. + Enable CONFIG_ASYNC_TX_DMA for FATE#306368 +* Thu Nov 26 2009 gregkh@suse.de +- clean up patch fuzz +* Thu Nov 26 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. + it never went upstream, so we should drop it as well. +* Thu Nov 26 2009 tonyj@suse.de +- patches.trace/lttng-*: update for 2.6.32 +- patches.trace/lttng-instrumentation-timer.patch: Delete. +- patches.xen/tmem: Refresh. +- patches.xen/xen3-auto-common.diff: Refresh. +* Thu Nov 26 2009 tonyj@suse.de +- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters + reserved by bios (FATE#307426). +* Wed Nov 25 2009 jeffm@suse.com +- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: + netfilter: Remove pointless CONFIG_NF_CT_ACCT warning + (bnc#552033 (and others)). +* Tue Nov 24 2009 hare@suse.de +- Update config files. +- patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion + driver to 4.22.00.00-suse (bnc#556587). +- patches.drivers/mpt-fusion-4.16.00.00-update: Delete. +* Tue Nov 24 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: + ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx + codecs (bnc#547357). +* Tue Nov 24 2009 duwe@suse.de +- patches.arch/ppc-extended_h_cede-*: Increase power savings + by allowing the core to sleep. + (FATE##307059, bnc#550447) +* Tue Nov 24 2009 sjayaraman@suse.de +- patches.suse/kconfig-automate-kernel-desktop: automate a few config + options for kernel-desktop (FATE#305694). +* Tue Nov 24 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Update references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Update + references (bnc#556135, FATE#306453). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Update references (bnc#556135, FATE#306453). +* Mon Nov 23 2009 jeffm@suse.com +- Enabled: + patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: + Add ghash algorithm test before provide to users (FATE#306883, + bnc#554578). +* Mon Nov 23 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "ghash - put proper .data section in place" fix +* Mon Nov 23 2009 sjayaraman@suse.de +- Update config files. + - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. + - Enable KERNEL_DESKTOP for only desktop flavor. +* Mon Nov 23 2009 sjayaraman@suse.de +- patches.suse/mm-tune-dirty-limits.patch: mm: Make default + VM dirty ratio configurable to suit different workloads + (bnc#552883). +* Fri Nov 20 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for + supported architectures. +* Fri Nov 20 2009 jeffm@suse.com +- Enabled B43_PHY_LP=y for PHY support on certain b43 chips. +* Fri Nov 20 2009 mmarek@suse.cz +- patches.suse/export-sync_page_range: Revert "vfs: Remove + generic_osync_inode() and sync_page_range{_nolock}()" + (bnc#557231). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + Fix a bad-pointer warning. +* Fri Nov 20 2009 agruen@suse.de +- rpm/macros.kernel-source: Add kernel_module_package_moddir() + macro for cross-distro compatibility (FATE 305225). +* Fri Nov 20 2009 jslaby@suse.cz +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Update references (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Update references (FATE#305733). +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Update references (FATE#305733). +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update + references (FATE#305733). +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Update references (FATE#305733). +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Update references (FATE#305733). +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Update references (FATE#305733). +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Update references (FATE#305733). +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Update references (FATE#305733). +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Update references (FATE#305733). +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Update references (FATE#305733). +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Update references (FATE#305733). +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Update references (FATE#305733). +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Update references (FATE#305733). +* Fri Nov 20 2009 jslaby@suse.cz +- Add writable resource limits support +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + SECURITY: selinux, fix update_rlimit_cpu parameter. +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: + split sys_setrlimit. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + IA64: use helpers for rlimits. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + misc: use helpers for rlimits. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + core: rename setrlimit to do_setrlimit. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + core: implement getprlimit and setprlimit syscalls. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + unistd: add __NR_[get|set]prlimit syscall numbers. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + COMPAT: add get/put_compat_rlimit. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: + phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). +- patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update + version to 3.104 (bnc#556234, FATE#307117). +* Fri Nov 20 2009 hare@suse.de +- patches.drivers/megaraid-04.12-update: megaraid: Update + megaraid_sas to version 04.12 (FATE#307125). +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source + (FATE#307517). +- patches.drivers/e1000-entropy-source.patch: Enable e1000 as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/e1000e-entropy-source.patch: Enable e1000e as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/igb-entropy-source.patch: Enable igb as entropy + source (disabled by default) (FATE#307517). +- patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as + entropy source (disabled by default) (FATE#307517). +- patches.drivers/tg3-entropy-source.patch: tg3: entropy source + (FATE#307517). +* Fri Nov 20 2009 hare@suse.de +- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: + scsi_lib_dma: fix bug with dma maps on nested scsi objects + (bnc#556595). +- patches.fixes/scsi-introduce-helper-function-for-blocking-eh: + scsi_transport_fc: Introduce helper function for blocking + scsi_eh (bnc#556595). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete. +* Fri Nov 20 2009 hare@suse.de + Whitespace cleanup for series2git: +- patches.arch/s390-message-catalog.diff: Refresh. +- patches.drivers/aacraid-24701-update: Refresh. +- patches.suse/crasher-26.diff: Refresh. +- patches.suse/kdb-common: Refresh. +- patches.suse/kdb-ia64: Refresh. +- patches.suse/kdb-x86: Refresh. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/perfmon2_ioctl.patch: Refresh. +- patches.suse/stack-unwind: Refresh. +* Fri Nov 20 2009 bphilips@suse.de +- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: + igb: add support for 82576NS SerDes adapter (FATE#306856). +* Fri Nov 20 2009 jbeulich@novell.com +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + Fix for !CONFIG_SCSI (in -ec2). +* Fri Nov 20 2009 mfasheh@suse.com +- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: + allocation reservations (bnc#501563 FATE#307247). +* Fri Nov 20 2009 jjolly@suse.de +- patches.suse/perfmon2.patch: Refresh. +- patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +- patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794) +* Fri Nov 20 2009 jeffm@suse.com +- Update to 2.6.32-rc8. + - Eliminated 1 patch. +* Fri Nov 20 2009 jeffm@suse.de +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + enclosure: fix oops while iterating enclosure_status array + (bnc#540997). +* Thu Nov 19 2009 tonyj@suse.de +- Update config files. +- patches.suse/perfmon2.patch: perfmon2 (FATE#303968). +- patches.suse/perfmon2_ioctl.patch: switch to ioctl interface + for perfmon2. +- patches.suse/perfmon2_noutrace.patch: remove UTRACE code + from perfmon2. +- patches.xen/xen3-patch-2.6.28: Refresh. +* Thu Nov 19 2009 jjolly@suse.de +- Update config files. +- patches.arch/s390-message-catalog.diff: Kernel message + catalog. (bnc#549193,LTC#57210,FATE#306999). +- rpm/kernel-binary.spec.in: +* Thu Nov 19 2009 jbohac@suse.cz +- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth + ramp up code (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: + fcoe: add a separate scsi transport template for NPIV vports + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: + fcoe: add check to fail gracefully in bonding mode (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: + fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off + in LLD (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix + checking san mac address (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: + fcoe: Fix getting san mac for VLAN interface (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: + fcoe: Fix setting lport's WWNN/WWPN to use san mac address + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: + fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-formatting-cleanups-and-commenting.patch: + fcoe: Formatting cleanups and commenting (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: + fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: + fcoe: initialize return value in fcoe_destroy (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: + fcoe, libfc: fix an libfc issue with queue ramp down in libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: + fcoe, libfc: use single frame allocation API (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV + vport create/destroy (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-remove-extra-function-decalrations.patch: + fcoe: remove extra function decalrations (fate#306857, + fate#306859, bnc#551175). +- patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: + fcoe: remove redundant checking of netdev->netdev_ops + (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: + fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size + (lport->mfs) (fate#306857, fate#306859, bnc#551175). +- patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport + symbolic name support (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: + libfc: add host number to lport link up/down + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: + libfc: Add libfc/fc_libfc.[ch] for libfc internal routines + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: + add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: + libfc: Add routine to copy data from a buffer to a SG list + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: + libfc: add set_fid function to libfc template (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: + libfc: add some generic NPIV support routines to libfc + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds + can_queue ramp up (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: + libfc: adds missing exch release for accepted RRQ (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: + libfc: changes to libfc_host_alloc to consolidate initialization + with allocation (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-request-functions.patch: + libfc: combine name server registration request functions + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-combine-name-server-registration-response-handlers.patch: + libfc: combine name server registration response handlers + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-convert-to-scsi_track_queue_full.patch: + libfc: convert to scsi_track_queue_full (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: + libfc: do not use DID_NO_CONNECT for pkt alloc + failures. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: + libfc: don't WARN_ON in lport_timeout for RESET state + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-export-fc-headers.patch: libfc: Export FC + headers (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, + fcoe: Add FC passthrough support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: + libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: + libfc, fcoe: fixes for highmem skb linearize panics + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: + libfc fcoe: increase ELS and CT timeouts (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: + libfc: fix an issue of pending exch/es after i/f destroyed or + rmmod fcoe (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix + ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: + libfc: fix fc_els_resp_type to correct display of CT responses + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: + libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in + fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: + libfc: fix free of fc_rport_priv with timer pending + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: + libfc: fix memory corruption caused by double frees and bad + error handling (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: + fix RNN_ID smashing skb payload (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: + libfc: fix symbolic name registrations smashing skb data + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: + libfc: fix typo in retry check on received PRLI (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: + libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-formatting-cleanups-across-libfc.patch: + libfc: Formatting cleanups across libfc (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, + libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfc-lport-fix-minor-documentation-errors.patch: + libfc: lport: fix minor documentation errors (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: + libfc: Move libfc_init and libfc_exit to fc_libfc.c + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: + libfc: Move non-common routines and prototypes out of libfc.h + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: + libfc: reduce can_queue for all FCP frame allocation failures + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: + libfc: register FC4 features with the FC switch (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: + libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: + libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove + fc_fcp_complete (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: + libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: + libfc: removes initializing fc_cpu_order and fc_cpu_mask per + lport (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: + libfc: removes unused disc_work and ex_list (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: + libfc: RNN_ID may be required before RSNN_NN with some switches + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: + libfc: RPN_ID is obsolete and unnecessary (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: + libfc: vport link handling and fc_vport state managment + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: + libfcoe: Allow FIP to be disabled by the driver (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: + libfcoe: Do not pad FIP keep-alive to full frame size + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: + libfcoe: don't send ELS in FIP mode if no FCF selected + (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: + libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, + bnc#551175). +- patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: + libfcoe: fcoe: simplify receive FLOGI response (fate#306857, + fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: + libfcoe: fip: allow FIP receive to be called from + IRQ. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: + libfcoe: FIP should report link to libfc whether selected or + not (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: + libfcoe: fip: use SCSI host number to identify debug + messages. (fate#306857, fate#306859, bnc#551175). +- patches.suse/libfcoe-formatting-and-comment-cleanups.patch: + libfcoe: formatting and comment cleanups (fate#306857, + fate#306859, bnc#551175). +- patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: + modify change_queue_depth to take in reason why it is being + called (fate#306857, fate#306859, bnc#551175). +- patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: + scsi error: have scsi-ml call change_queue_depth to handle + QUEUE_FULL (fate#306857, fate#306859, bnc#551175). +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply. +* Thu Nov 19 2009 hare@suse.de + Port patches from SLES11: +- patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered + in multipath (bnc#486001). +- patches.suse/dm-mpath-accept-failed-paths: Refresh. +- patches.suse/dm-mpath-detach-existing-hardware-handler: + multipath: detach existing hardware handler if none was + specified. +- patches.suse/dm-mpath-requeue-for-stopped-queue: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.suse/dm-mpath-evaluate-request-result-and-sense: + multipath: Evaluate request result and sense code + (FATE#303695,bnc#433920,bnc#442001). +* Thu Nov 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor + symbols, we need a unified kernel-source for all flavors. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: + use common iscsi suspend queue (FATE#307215). +- patches.fixes/iscsi-class-modify-handling-of-replacement-time: + iscsi class: modify handling of replacement timeout + (FATE#307215). +- patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set + tgt and lu reset timeout (FATE#307215). +- patches.fixes/libiscsi-add-warm-target-reset-tmf-support: + libiscsi: add warm target reset tmf support (FATE#307215). +- patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: + libiscsi: Check TMF state before sending PDU (FATE#307215). +- patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: + libiscsi: fix login/text checks in pdu injection code + (FATE#307215). +- patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: + add scsi target reset support to scsi ioctl. +- patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: + update Hitachi entries (v2). +- patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] + fc class: fail fast bsg requests. +- patches.drivers/cxgb3i: Delete. +- patches.drivers/cxgb3i-fixed-offload-array-size: Delete. +- patches.fixes/disable-lro-per-default: Delete. +* Thu Nov 19 2009 hare@suse.de +- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create + sysfs file, dh_state for all SCSI disk devices. +- patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change + the scsidh_activate interface to be asynchronous (bnc#556144). +- patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: + Make alua hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: + Make hp hardware handler's activate() async (bnc#556144). +- patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: + Make rdac hardware handler's activate() async (bnc#556144). +* Thu Nov 19 2009 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. +- patches.drivers/qla4xxx-sles11-update: Delete. +* Thu Nov 19 2009 hare@suse.de +- Update config files. +- patches.drivers/hpsa: hpsa: New driver SCSI driver for HP + Smart Array (FATE#307153,bnc#555855). +- supported.conf: Mark hpsa as supported. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO + Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). +- patches.arch/s390-02-01-cex3-init-msg.patch: + zcrypt: initialize ap_messages for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-02-cex3-special-command.patch: + zcrypt: special command support for cex3 exploitation + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support + for cex3 device types (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use + definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: + zcrypt: adjust speed rating between cex2 and pcixcc + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-02-06-zcrypt-speed-cex3.patch: + zcrypt: adjust speed rating of cex3 adapters + (bnc#555200,LTC#57825,FATE#307112). +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete. +* Thu Nov 19 2009 jjolly@suse.de +- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: + qeth: Exploit QDIO Data Connection Isolation + (bnc#555199,LTC#57826,FATE#307015). +* Wed Nov 18 2009 jeffm@suse.com +- scripts/sequence-patch.sh: Add automatic generation of supported + modules list. +* Wed Nov 18 2009 jeffm@suse.com +- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/acpi-generic-initramfs-table-override-support: + ACPI: generic initramfs table override support (bnc#533555). +- patches.suse/init-move-populate_rootfs-back-to-start_kernel: + init: move populate_rootfs back to start_kernel (bnc#533555). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + incorporate "crypto: ghash-intel - Hard-code pshufb" fix +* Wed Nov 18 2009 jeffm@suse.com +- patches.suse/hung_task_timeout-configurable-default: + hung_task_timeout: configurable default (bnc#552820). + - Default to runtime-disabled on all flavors except debug. +* Wed Nov 18 2009 agraf@suse.de +- patches.fixes/kvm-ioapic.patch: Ignore apic polarity + (bnc#556564). +- patches.fixes/kvm-macos.patch: Implement some missing intercepts + so osx doesn't blow up (bnc#556564). +* Wed Nov 18 2009 hare@suse.de +- supported.conf: mark missing 10Gb drivers as supported + (bnc#555793) +* Wed Nov 18 2009 hare@suse.de +- patches.drivers/aacraid-24701-update: Problems with aacraid + (bnc#524242,FATE#307437). +* Wed Nov 18 2009 hare@suse.de + Cleanup patches for series2git: +- patches.apparmor/apparmor.diff: Refresh. +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Refresh. +- patches.suse/bootsplash: Refresh. +- patches.suse/nfs4acl-ext3.diff: Refresh. +- patches.suse/silent-stack-overflow-2.patch: Refresh. +- patches.suse/suse-ppc32-mol.patch: Refresh. +- patches.suse/xfs-dmapi-src: Refresh. +* Wed Nov 18 2009 agraf@suse.de +- Update config files to enable pv-ops for KVM clock. (bnc#556135) +* Wed Nov 18 2009 tiwai@suse.de +- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: + hda - select IbexPeak handler for Calpella (FATE#306783). +- patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: + ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). +- patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: + hda - allow up to 4 HDMI devices (FATE#306783). +- patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: + ALSA: hda - convert intelhdmi global references to local + parameters (FATE#306783). +- patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: + ALSA: hda - remove intelhdmi dependency on multiout + (FATE#306783). +- patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: + ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi + (FATE#306783). +- patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: + ALSA: hda - reorder intelhdmi prepare/cleanup callbacks + (FATE#306783). +- patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: + hda - vectorize intelhdmi (FATE#306783). +- patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: + ALSA: hda - get intelhdmi max channels from widget caps + (FATE#306783). +- patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: + ALSA: hda - auto parse intelhdmi cvt/pin configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: + ALSA: hda - remove static intelhdmi configurations + (FATE#306783). +- patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: + ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). +- patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: + hda - Add reboot notifier to each codec (bnc#544779). +- patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - + Add missing export for snd_hda_bus_reboot_notify (bnc#544779). +- patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - + Add a proper ifdef to a debug code (FATE#306783). +- patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: + ALSA: hda - Fix detection of dual headphones (bnc#556532). +* Wed Nov 18 2009 jkosina@suse.de +- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: + crypto: ghash - Add PCLMULQDQ accelerated implementation + (FATE#306883, bnc#554578). +- Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m +- patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly +* Wed Nov 18 2009 agraf@suse.de +- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: + Only export selected pv-ops feature structs (bnc#556135). +- patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: + Replace kvm io delay pv-ops with linux magic (bnc#556135). +- patches.arch/kvm-split-paravirt-ops-by-functionality: Split + paravirt ops by functionality (bnc#556135). +- patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: + Split the KVM pv-ops support by feature (bnc#556135). +- patches.xen/xen3-patch-2.6.23: Refresh. +- patches.xen/xen3-patch-2.6.31: Refresh. +* Wed Nov 18 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: Delete. +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Also enable CONFIG_DMAR (fate#306796) for vanilla flavors +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Do the same for i386 +* Wed Nov 18 2009 trenn@suse.de +- Update config files. + Enabling CONFIG_DMAR (fate#306796), introduces these changes: + +CONFIG_HAVE_INTEL_TXT=y + -# CONFIG_DMAR is not set + +CONFIG_DMAR=y + +# CONFIG_DMAR_DEFAULT_ON is not set + +CONFIG_DMAR_FLOPPY_WA=y + +# CONFIG_INTEL_TXT is not set + Done for x86_64 for now only. +* Tue Nov 17 2009 jkosina@suse.de +- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for + NCR devices (bnc#548807). +* Fri Nov 13 2009 mmarek@suse.cz +- rpm/*.spec.in, rpm/kernel-module-subpackage: add + Provides: multiversion(kernel) to binary kernel packages, + kernel-source, kernel-syms and all KMPs so that zypp can be + configured to keep multiple versions of these packages + (fate#305311). +* Fri Nov 13 2009 npiggin@suse.de +- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT. +* Wed Nov 11 2009 jack@suse.cz +- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: + Implement reading of compressed files when PAGE_CACHE_SIZE > + compress block size (bnc#540349). +* Wed Nov 11 2009 npiggin@suse.de +- Update config files. +* Wed Nov 11 2009 npiggin@suse.de +- Disable PARAVIRT_GUEST on x86 32 and 64. +* Tue Nov 10 2009 teheo@suse.de +- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable + NCQ on Aspire 3810t (bnc#522790). +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. +* Tue Nov 10 2009 npiggin@suse.de +- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all + x86 kernels except debug. Overhead is prohibitive. +* Mon Nov 09 2009 npiggin@suse.de +- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for + file slab. +* Mon Nov 09 2009 npiggin@suse.de +- Update config files. Vanilla doesn't have unwinder, trace selects + options which select frame pointers. +* Mon Nov 09 2009 npiggin@suse.de +- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info + should provide all this functionality. +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour + server-preferred io sizes (bnc#550648). +* Mon Nov 09 2009 nfbrown@suse.de +- patches.fixes/nfs-slot-table-alloc: Don't fail allocations + for the slot table when mounting an NFS filesystem (bnc#519820). +* Fri Nov 06 2009 trenn@suse.de +- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: + Workaround for erratum 63 (bnc#548274). +* Fri Nov 06 2009 jeffm@suse.de +- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla. +* Fri Nov 06 2009 trenn@suse.de +- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout + for blinking LEDs (bnc#528811). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix last change. +* Fri Nov 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc6 and c/s 941. +- Update Xen config files. +- supported.conf: Add domctl. +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} + symlinks to the -devel package (bnc#548728). +* Fri Nov 06 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kvm-kmp. +* Thu Nov 05 2009 jeffm@suse.com +- Update to 2.6.32-rc6. + - 2 patches eliminated + - NR_CPUS=4096 on ia64/vanilla again +* Thu Nov 05 2009 jeffm@suse.com +- Performance: Disabled CONFIG_PARAVIRT on all flavors. +* Thu Nov 05 2009 mmarek@suse.cz +- Delete unused 2.6.31.y patches. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: add libfcoe and fix typo. +* Thu Nov 05 2009 mmarek@suse.cz +- supported.conf: update so that supported modules don't require + unsupported ones by adding following modules: async_pq + async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper + fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio + mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core + v4l2_compat_ioctl32. +* Thu Nov 05 2009 mmarek@suse.cz +- config.conf: remove kernel-ps3-devel (does not exist) and + kernel-debug-devel (not needed most of the time) from + kernel-syms. +* Thu Nov 05 2009 hare@suse.de +- Update config files: Set CONFIG_HZ to 100 for zSeries + (bnc#552564). +* Thu Nov 05 2009 hare@suse.de +- Update config files: Increase MAX_RAW_DEVS to 4096 on + zSeries (bnc#552565). +* Thu Nov 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete stray text. +* Tue Nov 03 2009 mmarek@suse.cz +- config.conf: remove the ec2 flavor from kernel-syms, most KMPs + don't make any sense on ec2 + (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html). +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: add split-modules to the src.rpm. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp. +* Mon Nov 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not + just the foo-kmp virtual dependency (bnc#472410). +* Thu Oct 29 2009 tonyj@suse.de +- Update ppc/ps3 config for CONFIG_UTRACE +* Thu Oct 29 2009 tonyj@suse.de +- patches.trace/utrace-core: Update for SP1 (FATE# 304321) +* Wed Oct 28 2009 nfbrown@suse.de +- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in + fs/nfsd/nf4acl.c to actually sort groups (bnc#549748). +* Wed Oct 28 2009 jdelvare@suse.de +- Update config files: + CONFIG_NTFS_FS=n + We handle NTFS through FUSE these days. +* Tue Oct 27 2009 jbohac@suse.cz +- Update config files: + CONFIG_NETLABEL=y + CONFIG_SECURITY_NETWORK_XFRM=y + (fate#307284) +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix compilation failure for configs with CONFIG_SMP=n and + CONFIG_FAR_GROUP_SCHED=y +* Tue Oct 27 2009 jbeulich@novell.com +- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). +- supported.conf: Add fs/minix. +* Tue Oct 27 2009 jkosina@suse.de +- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: + percpu: allow pcpu_alloc() to be called with IRQs off + (bnc#548119). +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + Update to newer version which is going to be merged upstream. +* Fri Oct 23 2009 jeffm@suse.com +- Update to 2.6.32-rc5-git3. +* Fri Oct 23 2009 mmarek@suse.cz +- Update config files: set NR_CPUS back to 2048 for ia64/vanilla + until there is a fix in mainline. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + fix for !CONFIG_SMP. +* Fri Oct 23 2009 mmarek@suse.cz +- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: + Cleanup and make boot splash work with KMS (bnc#544645). +* Thu Oct 22 2009 jeffm@suse.com +- Re-enabled NR_CPUS=4096 on ia64. +- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: + sched: move rq_weight data array out of .percpu (bnc#548119). +* Tue Oct 20 2009 jbeulich@novell.com +- Update x86-64 Xen config file (NR_CPUS=512). +- Refresh a few Xen patches. +- rpm/kernel-binary.spec.in: Handle -ec2 flavor. +- rpm/package-descriptions: Describe -ec2 flavor. +- rpm/post.sh: Handle -ec2 flavor. +* Tue Oct 20 2009 jbeulich@novell.com +- patches.fixes/use-totalram_pages: Delete. +* Tue Oct 20 2009 jbeulich@novell.com +- config.conf: Add -ec2 configs (fate#305273) +- Add ec2 config files. +- patches.xen/xen-unpriv-build: No need to build certain bits + when building non-privileged kernel. +- supported.conf: Add fs/nls/nls_base. +* Mon Oct 19 2009 jeffm@suse.com +- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build + failures (bnc#548119) +* Mon Oct 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: [s390x] ignore errors from + dwarfextract for now. +* Fri Oct 16 2009 jeffm@suse.com +- Update config files. +* Fri Oct 16 2009 jeffm@suse.com +- Update to 2.6.32-rc5. +* Fri Oct 16 2009 mmarek@suse.de +- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix + percpu warnings. +* Fri Oct 16 2009 mmarek@suse.de +- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and + VME_TSI148 on ia64 to fix build. +* Fri Oct 16 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC. +* Fri Oct 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.32-rc4 and c/s 938. +- config.conf: Re-enable Xen. +- Update x86 config files. +* Tue Oct 13 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: Added missing sites. +* Mon Oct 12 2009 jeffm@suse.com +- patches.rpmify/staging-missing-sched.h: staging: Complete + sched.h removal from interrupt.h. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/ptrace_may_access-fix: apparmor: + ptrace_may_access -> ptrace_access_check. +* Mon Oct 12 2009 jeffm@suse.de +- Update config files. +* Mon Oct 12 2009 jeffm@suse.de +- Updated to 2.6.32-rc4. + - Eliminated 4 patches. + - Refreshed context. +* Mon Oct 12 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: Refresh and enable. +* Fri Oct 09 2009 jeffm@suse.de +- Cleanup unused patches: + - patches.fixes/iwl3945-fix-rfkill.patch: Delete. + - patches.fixes/iwlagn-fix-rfkill.patch: Delete. + - patches.suse/kdb-serial-8250: Delete. + - patches.suse/kdb-sysctl-context: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.suse/kbuild-icecream-workaround: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: Delete. +* Fri Oct 09 2009 jeffm@suse.de +- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable. +* Fri Oct 09 2009 jeffm@suse.de +- Update vanilla config files. +* Fri Oct 09 2009 jeffm@suse.de +- Update to 2.6.32-rc3. +* Fri Oct 09 2009 jeffm@suse.de +- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR + in Makefile. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-prepare_multicast: winbond: implement + prepare_multicast and fix API usage. +- patches.rpmify/winbond_beacon_timers: winbond: use + bss_conf->beacon_int instead of conf->beacon_int. +- patches.rpmify/winbond-build-fixes: Delete. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include + . +* Thu Oct 08 2009 jeffm@suse.de +- patches.suse/kdb-build-fixes: kdb: Build fixes. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390. +* Thu Oct 08 2009 jeffm@suse.de +- patches.rpmify/winbond-build-fixes: winbond: API fix. +* Thu Oct 08 2009 jeffm@suse.de +- Update vanilla config files. +* Thu Oct 08 2009 jeffm@suse.de +- Update config files. +* Thu Oct 08 2009 jeffm@suse.de +- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). + - Eliminated 28 patches. + - 14 patches need further review. + - Xen and AppArmor are currently disabled. + - USB support in KDB is disabled. +* Thu Oct 08 2009 gregkh@suse.de +- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. + - major tty bugfix +* Wed Oct 07 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - + Fix yet another auto-mic bug in ALC268 (bnc#544899). +* Wed Oct 07 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, + "iostat reports wrong service time and utilization", introduced + by this patch (bnc#544926). +* Tue Oct 06 2009 gregkh@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Delete. +- patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. + - both of these were not being used anyway. +* Tue Oct 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.2. +* Tue Oct 06 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - + Add a workaround for ASUS A7K (bnc#494309). +* Mon Oct 05 2009 gregkh@suse.de +- refresh patch fuzz due to 2.6.31.2 import. +* Mon Oct 05 2009 gregkh@suse.de +- Update to Linux 2.6.31.2: + - bugfixes, lots of them. + - security fixes +* Mon Oct 05 2009 tiwai@suse.de +- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - + Fix invalid initializations for ALC861 auto mode (bnc#544161). +* Fri Oct 02 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: Delete. + The code never got upstream and looks incorrect. +* Fri Oct 02 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: + ctxfi: Swapped SURROUND-SIDE mute. +- patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - + Added quirk to enable sound on Toshiba NB200. +- patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 + fixes for HD-audio. +* Thu Oct 01 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31.1 and c/s 934. +* Thu Oct 01 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361). +* Wed Sep 30 2009 gregkh@suse.de +- Update to 2.6.31.1 + - lots of bugfixes + - security fixes +* Wed Sep 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete the sle11 ocfs2-kmp. +* Tue Sep 29 2009 trenn@suse.de +- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch + with +trenn (bnc#542767) +* Wed Sep 23 2009 teheo@suse.de +- Update config files. Build pci-stub driver into the kernel so that + built in pci drivers can be blocked from attaching to devices. +* Tue Sep 22 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: when building against Linus' + kernels (2.6.x), append a .0 to the kernel version embedded in + the KMP version, to ensure that such KMP is older than a KMP + built against a subsequent stable kernel (2.6.x.y, y > 0). +* Mon Sep 21 2009 jeffm@suse.de +- Update config files. +* Mon Sep 21 2009 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to + 2.6.31 (bnc#533555). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: do not remove the bootloader entry if the kernel + version didn't change (bnc#533766). +* Sat Sep 19 2009 mmarek@suse.cz +- rpm/postun.sh: remove dead code. +* Fri Sep 18 2009 jeffm@suse.de +- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly + honor read-only devices (bnc#441062). +* Thu Sep 17 2009 jeffm@suse.de +- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev + to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table + revision (bnc#503038). +- patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table + rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038). +* Thu Sep 17 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport + from 2.6.32-rc1. +* Wed Sep 16 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31 final. +* Tue Sep 15 2009 teheo@suse.de + Backport attach inhibition for builtin pci drivers from 2.6.32-rc. +- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate + out pci_add_dynid(). +- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add + pci_stub.ids parameter. +* Tue Sep 15 2009 teheo@suse.de + Backport patches from 2.6.32-rc to ease ossp testing. +- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. +- patches.drivers/implement-register_chrdev: chrdev: implement + __register_chrdev(). +- patches.drivers/sound-make-oss-device-number-claiming-optional: + sound: make OSS device number claiming optional and schedule + its removal. +- patches.drivers/sound-request-char-major-aliases-for-oss-devices: + sound: request char-major-* module aliases for missing OSS + devices. +* Mon Sep 14 2009 sdietrich@suse.de +- patches.suse/novfs-client-module: Update header todo list with + locking nits (semaphore used as mutex / completion) +* Mon Sep 14 2009 jeffm@suse.com +- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor + (bnc#538849) +* Fri Sep 11 2009 jbeulich@novell.com +- patches.suse/crasher-26.diff: Add capability to also trigger a + kernel warning. +* Fri Sep 11 2009 knikanth@suse.de +- patches.suse/block-seperate-rw-inflight-stats: Seperate read + and write statistics of in_flight requests (fate#306525). +* Thu Sep 10 2009 gregkh@suse.de +- patch fuzz removal now that 2.6.31 is the base. +* Thu Sep 10 2009 gregkh@suse.de +- Update config files. + CONFIG_MOUSE_PS2_ELANTECH=y + CONFIG_MOUSE_PS2_TOUCHKIT=y + (bnc#525607) +* Thu Sep 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek + issues, add another Nvidia HDMI device id +* Thu Sep 10 2009 jeffm@suse.de +- Updated to 2.6.31-final. +* Tue Sep 08 2009 gregkh@suse.de +- refresh patches for fuzz due to upstream changes +* Tue Sep 08 2009 gregkh@suse.de +- Update to 2.6.31-rc9 + - obsoletes: + - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 + - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix +* Tue Sep 08 2009 knikanth@suse.de +- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: + scsi_dh: Provide set_params interface in emc device handler + (bnc#521607). +- patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: + scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). +- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: + scsi_dh: add the interface scsi_dh_set_params() (bnc#521607). +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: delete obsolete macro. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: require minimum versions of + module-init-tools and perl-Bootloader, the %%post script is no + longer compatible with ancient versions. +* Mon Sep 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.31, the + previous <= 2.6.30-1 didn't catch some cases obviously + (bnc#533766). +* Fri Sep 04 2009 jeffm@suse.de +- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923). +* Fri Sep 04 2009 mmarek@suse.cz +- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, +- rpm/kernel-source.spec.in: Use a simple script to check kabi by + comparing Module.symvers files (similar to the old SLES9 one). +- rpm/built-in-where: Delete. +- rpm/symsets.pl: Delete. +- kabi/commonsyms: Delete. +- kabi/usedsyms: Delete. +* Fri Sep 04 2009 mmarek@suse.cz +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: + kbuild: rebuild fix for Makefile.modbuiltin. +* Thu Sep 03 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + Delete, it was wrong. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen config files. +* Wed Sep 02 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc8 and c/s 931. +- patches.fixes/use-totalram_pages: use totalram_pages in favor + of num_physpages for sizing boot time allocations (bnc#509753). +- patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage + for shared vcpu_info structure. +* Wed Sep 02 2009 tiwai@suse.de +- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for + IDT92HD73* codecs +* Tue Sep 01 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: Update to latest git. +* Tue Sep 01 2009 jeffm@suse.com +- patches.arch/add_support_for_hpet_msi_intr_remap.patch: + intr-remap: generic support for remapping HPET MSIs + (bnc#532758). +- patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: + x86: arch specific support for remapping HPET MSIs (bnc#532758). +* Tue Sep 01 2009 mmarek@suse.cz +- rpm/package-descriptions: fix description of the x86_64 + kernel-desktop package (bnc#535457). +* Mon Aug 31 2009 jeffm@suse.com +- Update to 2.6.31-rc8. + - Eliminated 1 patch. +* Mon Aug 31 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: + ALSA: hda - Add missing mux check for VT1708 (bnc#534904). +- patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - + Fix MacBookPro 3,1/4,1 quirk with ALC889A. +- patches.drivers/alsa-hda-2.6.32-pre: Refresh. +* Wed Aug 26 2009 tiwai@suse.de +- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch + patches.drivers/alsa-hda-2.6.32-pre +* Tue Aug 25 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Delete. +* Tue Aug 25 2009 jbeulich@novell.com +- scripts/run_oldconfig.sh: Consistently use $prefix. +* Mon Aug 24 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete %%name-base <= 2.6.30-1 + (bnc#530752). +* Mon Aug 24 2009 jeffm@suse.com +- Update to 2.6.31-rc7. + - Eliminated 3 patches. +* Mon Aug 24 2009 jeffm@suse.com +- Update config files: Enable CONFIG_PROC_EVENTS. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh: Do not call /sbin/module_upgrade, the rename + happened before SLES10. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/module-renames: Delete, we don't need to care about modules + renamed before SLES10. Also, current mkinitrd gets the list of + storage drivers based on pci ids. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package + can't be installed on SLE10 as is, so why not make it more + adventurous. +* Fri Aug 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements + from the -extra subpackage which doesn't exist on openSUSE + anymore. +* Thu Aug 20 2009 tiwai@suse.de +- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes + (to be merged) +- patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Thu Aug 20 2009 jbeulich@novell.com +- Update config files (modularize crypto again). +- supported.conf: Add resulting modules as supported. +* Wed Aug 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc6 and c/s 928. +* Wed Aug 19 2009 tiwai@suse.de +- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - + Fix invalid capture mixers with some ALC268 models. +* Tue Aug 18 2009 gregkh@suse.de +- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: + USB: storage: increase the bcd range in Sony's bad device + table. (bnc#466554). +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: Change the range from + 0-255 to 0-7 to make it easier for HAL to handle the device without a + need for custom scripts. +* Mon Aug 17 2009 jeffm@suse.com +- Updated to 2.6.31-rc6. +* Mon Aug 17 2009 gregkh@suse.de +- patches.drivers/samsung-backlight-driver.patch: added N120 support + and some other devices that were integrated into the driver from + upstream. +* Sun Aug 16 2009 coly.li@suse.de +- supported.conf: + set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided + separately in the ocfs2 KMP package +* Sat Aug 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / + clean up IDT92HD83xxx codec parser (bnc#531533). +* Sat Aug 15 2009 gregkh@suse.de +- Update config files. +- patches.drivers/samsung-backlight-driver.patch: Samsung + backlight driver (bnc#527533, bnc#531297). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add some hints how to set the %%jobs + macro (bnc#530535). +* Fri Aug 14 2009 mmarek@suse.cz +- rpm/modversions: for overriden functions, keep the keyword in + --pack. +* Thu Aug 13 2009 jeffm@suse.com +- Updated to 2.6.31-rc5-git9. + - Eliminated 7 patches. +* Thu Aug 13 2009 tiwai@suse.de +- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add + quirks for some HP laptops (bnc#527284). +- patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic + support +- patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - + Enable line-out detection only with speakers (bnc#520975). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files + also to the main package. That way, kernel-$flavor-base is not + needed in normal setups (fate#307154). +* Wed Aug 12 2009 mmarek@suse.cz +- rpm/find-provides: no rpm provides for drivers/staging. It's + higly unlikely that any KMP would require them and they just + take up space in the rpm metadata. +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add + a white-list for MSI option (bnc#529971). +* Tue Aug 11 2009 tiwai@suse.de +- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: + ALSA: hda - Don't override ADC definitions for ALC codecs + (bnc#529467). +- patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: + ALSA: hda - Add auto-mic support for Realtek codecs. +* Tue Aug 11 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc + for the -rt variant. +* Mon Aug 10 2009 mmarek@suse.cz +- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to + patches.rpmify to fix vanilla ppc builds. +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - + Add missing vmaster initialization for ALC269 (bnc#527361). +* Mon Aug 10 2009 tiwai@suse.de +- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh. +* Fri Aug 07 2009 jeffm@suse.com +- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong + update_funcs() call. +* Fri Aug 07 2009 tiwai@suse.de +- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing + DRV_NAME definitions for fsl/* drivers (to fix PPC builds) +* Fri Aug 07 2009 tiwai@suse.de +- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: + wmi: Fix kernel panic when stack protection + enabled. (bnc#529177). +- supported.conf: Update HD-audio modules +* Fri Aug 07 2009 mmarek@suse.cz +- make config/s390/vanilla a symlink again. +* Fri Aug 07 2009 mmarek@suse.de +- rpm/kernel-binary.spec.in: do not manually extract vmlinux + debuginfo on ppc(64), rpm does it itself. +* Thu Aug 06 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources. +* Thu Aug 06 2009 jeffm@suse.de +- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It + doesn't wake up the display on certain hardware. +* Wed Aug 05 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not split the -extra subpackage on + openSUSE (bnc#528097). +* Wed Aug 05 2009 jeffm@suse.de +- Updated to 2.6.31-rc5-git3. + - Eliminated 4 patches. +* Wed Aug 05 2009 gregkh@suse.de +- kernel-source.changes: remove old (pre 2008) messages, and move 2008 + to kernel-source.changes.old. No need to spam email addresses that + are no longer with the company for failed kernel builds. +* Wed Aug 05 2009 gregkh@suse.de +- patches.drivers/staging-rtl8192su-fix-build-error.patch: + Staging: rtl8192su: fix build error. +* Wed Aug 05 2009 jeffm@suse.de +- patches.suse/supported-flag-enterprise: Make the supported + flag configurable at build time (bnc#528097). +* Wed Aug 05 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds +* Tue Aug 04 2009 gregkh@suse.de +- Update config files. + disable CONFIG_DRM_RADEON_KMS as per bnc#527910 +* Tue Aug 04 2009 jeffm@suse.de +- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for + comparing pgprot_t. +* Tue Aug 04 2009 tiwai@suse.de +- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates +- Update config files: enable CONFIG_SND_HDA_CIRRUS=y +* Mon Aug 03 2009 jeffm@suse.de +- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes + ppc build failures. +* Mon Aug 03 2009 jeffm@suse.de +- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port +* Mon Aug 03 2009 jeffm@suse.de +- Updated to 2.6.31-rc5. + - Eliminated 11 patches. +* Mon Aug 03 2009 coly.li@suse.de +- Update config files to enable CONFIG_DLM_DEBUG. +* Fri Jul 31 2009 jbeulich@novell.com +- Update Xen patches to 2.6.31-rc4 and c/s 916. +- patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: + Delete. +- patches.xen/xen3-panic-on-io-nmi.diff: Delete. +- config.conf: Re-enable Xen. +- Update config files. +* Wed Jul 29 2009 tiwai@suse.de +- Update config files: revert to CONFIG_SND=m and enabled again + CONFIG_SND_DEBUG=y +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc. +* Tue Jul 28 2009 mmarek@suse.cz +- Update config files: disable CONFIG_FB_UDL on ia64. +* Tue Jul 28 2009 jbeulich@novell.com +- config.conf: Remove duplicate i386/desktop entry. +* Tue Jul 28 2009 tiwai@suse.de +- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: + ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244). +* Mon Jul 27 2009 tiwai@suse.de +- patches.drivers/alsa-pcm-*: ALSA PCM fixes +- Fix/enhancement patches backported from ALSA tree + * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: + ALSA: Add new TLV types for dBwith min/max (for usb). + * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). + * patches.drivers/alsa-hda-*: More HD-audio fixes + * patches.drivers/alsa-ice-*: ICE17xx fixes + * patches.drivers/alsa-midi-*: MIDI fixes + * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes +- Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, + patches.drivers/alsa-ca0106-capture-bufsize-fix, + patches.drivers/alsa-ctxfi +- Update config files. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop + config-subst from the package. +* Mon Jul 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo + subpackage with vmlinux.debug to fix build with new rpm. This + works for ix86 and x86_64, other archs might need further fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: more ia64 fixes +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Mon Jul 27 2009 jeffm@suse.de +- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes. +* Sun Jul 26 2009 jeffm@suse.de +- config.conf: Re-enabled trace flavor. +* Fri Jul 24 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on i386 and x86_64 + across all flavors. +* Fri Jul 24 2009 jeffm@suse.de +- Update to 2.6.31-rc4. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: cleanup %%cpu_arch_flavor definition, + make %%symbols a variable and only use it for selecting patches. + Also drop the RT symbol as there are not rt patches currently. +* Thu Jul 23 2009 mmarek@suse.cz +- Change the s390(x) config layout so that each arch has its own + subdirectory, as it is done for other archs. s390/vanilla is a + symlink to s390x/vanilla. +* Thu Jul 23 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common + macros to kernel-spec-macros. +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - + Fix the max capture buffer size (bnc#521890). +* Wed Jul 22 2009 tiwai@suse.de +- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support + (FATE#306935). +- Update config files. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + Delete. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + Delete. +- patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + Delete. +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + Delete. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + Delete. +* Wed Jul 22 2009 trenn@suse.de + These are mainline: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Delete. +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete. +* Tue Jul 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: remove double-slash from include2/asm + symlink. +* Tue Jul 21 2009 mmarek@suse.cz +- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from + the kernel-syms package. These flavor are often excluded in KMPs, + so excluding them from kernel-syms reduces useless build + dependencies. KMPs can buildrequire kernel-$flavor-devel + explicitely if desired. +* Tue Jul 21 2009 mmarek@suse.cz + Delete obsolete apparmor patches. +- patches.apparmor/add-path_permission.diff: Delete. +- patches.apparmor/add-security_path_permission: Delete. +- patches.apparmor/apparmor-2.6.25.diff: Delete. +- patches.apparmor/apparmor-audit.diff: Delete. +- patches.apparmor/apparmor-intree.diff: Delete. +- patches.apparmor/apparmor-lsm.diff: Delete. +- patches.apparmor/apparmor-main.diff: Delete. +- patches.apparmor/apparmor-misc.diff: Delete. +- patches.apparmor/apparmor-module_interface.diff: Delete. +- patches.apparmor/apparmor-network.diff: Delete. +- patches.apparmor/apparmor-path_permission: Delete. +- patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. +- patches.apparmor/apparmor-rlimits.diff: Delete. +- patches.apparmor/d_namespace_path.diff: Delete. +- patches.apparmor/d_namespace_path_oops_fix.diff: Delete. +- patches.apparmor/do_path_lookup-nameidata.diff: Delete. +- patches.apparmor/export-security_inode_permission-for-aufs: + Delete. +- patches.apparmor/file-handle-ops.diff: Delete. +- patches.apparmor/fix-complain.diff: Delete. +- patches.apparmor/fix-vfs_rmdir.diff: Delete. +- patches.apparmor/fork-tracking.diff: Delete. +- patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. +- patches.apparmor/fsetattr-restore-ia_file.diff: Delete. +- patches.apparmor/fsetattr.diff: Delete. +- patches.apparmor/remove_suid.diff: Delete. +- patches.apparmor/security-create.diff: Delete. +- patches.apparmor/security-getxattr.diff: Delete. +- patches.apparmor/security-link.diff: Delete. +- patches.apparmor/security-listxattr.diff: Delete. +- patches.apparmor/security-mkdir.diff: Delete. +- patches.apparmor/security-mknod.diff: Delete. +- patches.apparmor/security-readlink.diff: Delete. +- patches.apparmor/security-removexattr.diff: Delete. +- patches.apparmor/security-rename.diff: Delete. +- patches.apparmor/security-rmdir.diff: Delete. +- patches.apparmor/security-setattr.diff: Delete. +- patches.apparmor/security-setxattr.diff: Delete. +- patches.apparmor/security-symlink.diff: Delete. +- patches.apparmor/security-unlink.diff: Delete. +- patches.apparmor/security-xattr-file.diff: Delete. +- patches.apparmor/sysctl-pathname.diff: Delete. +- patches.apparmor/unambiguous-__d_path.diff: Delete. +- patches.apparmor/vfs-getxattr.diff: Delete. +- patches.apparmor/vfs-link.diff: Delete. +- patches.apparmor/vfs-listxattr.diff: Delete. +- patches.apparmor/vfs-mkdir.diff: Delete. +- patches.apparmor/vfs-mknod.diff: Delete. +- patches.apparmor/vfs-notify_change.diff: Delete. +- patches.apparmor/vfs-removexattr.diff: Delete. +- patches.apparmor/vfs-rename.diff: Delete. +- patches.apparmor/vfs-rmdir.diff: Delete. +- patches.apparmor/vfs-setxattr.diff: Delete. +- patches.apparmor/vfs-symlink.diff: Delete. +- patches.apparmor/vfs-unlink.diff: Delete. +* Tue Jul 21 2009 npiggin@suse.de +- Update config files for bnc#522686 -- set + CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536. +* Mon Jul 20 2009 jeffm@suse.de +- Update config files: Disabled optimize for size on all flavors + (FATE#305694) +* Mon Jul 20 2009 jeffm@suse.de +- Update config files. +* Mon Jul 20 2009 jeffm@suse.com +- Update to 2.6.30.2 + - lots of security and bug fixes + - Obsoleted patches.fixes/firmware-memmap-64bit.diff +* Mon Jul 20 2009 mmarek@suse.cz +- rpm/split-modules: set LC_COLLATE=C +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- rpm/package-descriptions: Added desktop description. +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Sat Jul 18 2009 jeffm@suse.de +- Add -desktop flavors for i386 and x86_64 (FATE#305694) + - Disabled group scheduler and groups + - Disabled optimize for size + - Enabled full preemption + - Set HZ=1000 +* Fri Jul 17 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist + function and make it less chatty in build logs. +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/apparmor.diff: ia64 build fix +* Fri Jul 17 2009 jeffm@suse.com +- patches.apparmor/security-default-lsm: security: Define default + LSM (bnc#442668). +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.apparmor/apparmor.diff: AppArmor. +* Thu Jul 16 2009 jeffm@suse.de +- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug + attribute handling. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: drop the config-subst script, use + scripts/config instead. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix debugsource generation. +* Thu Jul 16 2009 mmarek@suse.cz +- rpm/split-modules: fix last change. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/split-modules: fix for module names with underscores or + dashes. +* Wed Jul 15 2009 jeffm@suse.de +- Update to 2.6.31-rc3. + - Eliminated 2 patches. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: annotate in which products the + obsoleted kmps were last used, remove "ralink-rt2860-kmp" which + I couldn't find anywhere. +* Wed Jul 15 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375). +* Tue Jul 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of + the base / main / unsupported module lists to a separate script. + Avoids 6k modinfo calls and fixes module dependencies + (bnc#512179). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680). +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of function symbols. +* Mon Jul 13 2009 mmarek@suse.cz +- rpm/modversions: fix overriding of unknown symbols. +* Tue Jul 07 2009 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Delete the leftover debugging patches for e1000e EEPROM corruption + that are not needed anymore. +* Tue Jul 07 2009 aj@suse.de +- README.BRANCH: Update, kotd will become 11.2 eventually. +* Mon Jul 06 2009 jeffm@suse.com +- Update to 2.6.31-rc2. +* Fri Jul 03 2009 jeffm@suse.com +- Update to 2.6.31-rc1-git10. + - Eliminated 28 patches. + - Xen is disabled. +* Fri Jul 03 2009 mmarek@suse.cz +- patches.suse/kbuild-generate-modules.builtin: kbuild: generate + modules.builtin. +- rpm/kernel-binary.spec.in: package modules.builtin for use by + modprobe / mkinitrd. +* Fri Jul 03 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify + the patch applying loops to reduce noise in build logs. +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: chmod +x find-provides +* Tue Jun 30 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: do not "annotate" the packaged + Modules.symvers +- patches.suse/modpost-filter-out-built-in-depends: Delete. +* Tue Jun 30 2009 jbeulich@novell.com +- patches.arch/ia64-page-migration: Fix compiler warning. +* Mon Jun 29 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/symvers* files back to + -base, these are needed during KMP installation. +* Mon Jun 29 2009 mmarek@suse.cz +- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: + fix generating of *.symtypes files. +- patches.suse/genksyms-add-override-flag.diff: Refresh. +- rpm/kernel-binary.spec.in: create the *.symref files in the build + directory +* Fri Jun 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to + the subpackages (bnc#516827). +* Wed Jun 24 2009 gregkh@suse.de +- Update config files. + revert the ACPI and thermal config changes: + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=m + CONFIG_ACPI_BATTERY=m + CONFIG_ACPI_BUTTON=m + CONFIG_ACPI_VIDEO=m + CONFIG_ACPI_FAN=m + CONFIG_ACPI_PROCESSOR=m + CONFIG_ACPI_THERMAL=m + CONFIG_ACPI_CONTAINER=m + CONFIG_X86_ACPI_CPUFREQ=m + CONFIG_THERMAL=m +* Wed Jun 24 2009 gregkh@suse.de +- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. +- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete. +* Wed Jun 24 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30 and c/s 908. +- Update Xen config files. +- patches.xen/tmem: Transcendent memory ("tmem") for Linux. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ACPI_AC=y + CONFIG_ACPI_BATTERY=y + CONFIG_ACPI_BUTTON=y + CONFIG_ACPI_VIDEO=y + CONFIG_ACPI_FAN=y + CONFIG_ACPI_PROCESSOR=y + CONFIG_ACPI_THERMAL=y + CONFIG_ACPI_CONTAINER=y + CONFIG_X86_ACPI_CPUFREQ=y + CONFIG_THERMAL=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_SND_TIMER=y + CONFIG_SND_PCM=y + CONFIG_SND_SEQUENCER=y + CONFIG_SND_MIXER_OSS=y + CONFIG_SND_PCM_OSS=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + fix up config mistake in x86-64/default made in last commit. +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_VIDEO_OUTPUT_CONTROL=y + CONFIG_SOUND=y + CONFIG_SND=y +* Tue Jun 23 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_I2C=y + CONFIG_HWMON=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_IPV6=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_HID=y + CONFIG_USB_STORAGE=y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_ATA_PIIX=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_USB_EHCI_HCD=Y + CONFIG_USB_OHCI_HCD=Y + CONFIG_USB_UHCI_HCD=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_CFG80211=Y + CONFIG_LIB80211=Y + CONFIG_MAC80211=Y + CONFIG_ATH5K=Y +* Sat Jun 20 2009 gregkh@suse.de +- Update config files. + config/i386/pae and config/x86-64/default: + CONFIG_X86_MSR=Y + CONFIG_X86_CPUID=Y +* Fri Jun 19 2009 gregkh@suse.de +- comment out broken acpi patch for the moment. +* Fri Jun 19 2009 gregkh@suse.de +- move the "preload" branch into master to get 2.6.30 working + for Moblin. +- Update config files. +- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP + quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, + bnc#503101). +- patches.suse/driver-core-add-nodename-callbacks.patch: Driver + Core: add nodename callbacks. +- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: + Driver Core: aoe: add nodename for aoe devices. +- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: + Driver Core: block: add nodename support for block drivers.. +- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: + Driver Core: bsg: add nodename for bsg driver. +- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: + Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. +- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: + Driver Core: drm: add nodename for drm devices. +- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: + Driver Core: dvb: add nodename for dvb drivers. +- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: + Driver Core: input: add nodename for input drivers. +- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: + Driver Core: misc: add nodename support for misc devices.. +- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: + Driver Core: raw: add nodename for raw devices. +- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: + Driver Core: sound: add nodename for sound drivers. +- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: + Driver Core: usb: add nodename support for usb drivers.. +- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: + Driver Core: x86: add nodename for cpuid and msr drivers.. +- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: + Merge IRQ and POLL modes. +- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: + remove "wait for all devices before mounting root" delay. +- patches.suse/linux-2.6.29-enable-async-by-default.patch: + enable async_enabled by default. +- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms + even more. +- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: + jbd: longer commit interval. +- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen + after sata. +- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: + retry mounting the root fs if we can't find init. +- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence + acer wmi driver on non-acer machines. +- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen + device ids + . +- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: + uvcvideo: ignore hue control for 5986:0241 (bnc#499152). +- patches.suse/devtmpfs.patch: Delete. +* Fri Jun 12 2009 greg@suse.de +- scripts/sequence-patch.sh: fix bug in ketchup usage +* Wed Jun 10 2009 jeffm@suse.com +- Update to 2.6.30-final. +* Wed Jun 10 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30-rc8 and c/s 898. +- Update Xen config files. +- patches.xen/pci-reserve: linux/pci: reserve io/memory space + for bridge. +- patches.xen/xen-x86-exports: Delete. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and + change indentation to what autobuild enforces on checkin. No + functional change. +* Tue Jun 09 2009 jbeulich@novell.com +- patches.suse/stack-unwind-add-declaration.patch: Fold into ... +- patches.suse/stack-unwind: ... this one. +* Tue Jun 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel + again. +- rpm/find-provides: don't generate the ksym() provides ourself, + let rpm do it. Add a workaround for vmlinux-*.gz in -devel. +* Mon Jun 08 2009 jeffm@suse.com +- patches.suse/reiser4-set_page_dirty_notag: mm: Add + set_page_dirty_notag() helper for reiser4. +* Fri Jun 05 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to + kmps (bnc#502092). +* Thu Jun 04 2009 jeffm@suse.de +- Update to 2.6.30-rc8. +* Thu Jun 04 2009 sdietrich@suse.de +- supported.conf: remove duplicate kernel/drivers/md/dm-log +* Thu Jun 04 2009 teheo@suse.de + Conver ide major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Mon Jun 01 2009 jeffm@suse.de +- Update to 2.6.30-rc7-git4. +* Fri May 29 2009 teheo@suse.de + Rename mangle_minor to mangle_devt and also cover sd major allocation. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_devt parameter (fate#305584). +* Fri May 29 2009 teheo@suse.de +- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs + except for vanilla and ppc/ps3. +- patches.suse/block-add-mangle-devt-switch: block: add + genhd.mangle_minor parameter (fate#305584). +* Thu May 28 2009 jdelvare@suse.de +- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to + EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578). +* Wed May 27 2009 jeffm@suse.com +- Update to 2.6.30-rc7-git2. +* Wed May 27 2009 gregkh@suse.de +- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: + ath1e: add new device id for asus hardware. +* Tue May 26 2009 mmarek@suse.cz +- rpm/mkspec: when using a custom release number, create a + get_release_number.sh script for autobuild. +* Tue May 26 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip + binaries in /usr/src/linux-obj/*/*/scripts. +* Tue May 26 2009 jdelvare@suse.de +- patches.drivers/r8169-allow-true-forced-mode-setting.patch: + r8169: allow true forced mode setting (bnc#467518). +* Mon May 25 2009 mmarek@suse.cz +- switch i386 flavors back to -default (non-pae) and -pae for + milestone2 +* Sun May 24 2009 mmarek@suse.cz +- rpm/find-provides: fix for kernel-kdump. +* Sat May 23 2009 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: + workaround to fix provides of built-in symbols: move vmlinux*.gz + back to -base and extract the provides from it. +* Fri May 22 2009 teheo@suse.de +- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE + relocation. +* Fri May 22 2009 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid + unpacking the patches tarballs in compute-PATCHVERSION.sh. +* Fri May 22 2009 mmarek@suse.cz +- rpm/mkspec: add --release option to set a custom release string. +- scripts/tar-up.sh: revive -rs option. +* Wed May 20 2009 mmarek@suse.cz +- patches.arch/acpi_thermal_passive_blacklist.patch, + patches.suse/devtmpfs.patch: fix patches to apply with git-apply. +* Tue May 19 2009 sdietrich@suse.de +- patches.suse/stack-unwind-add-declaration.patch: Fix compile + error when CONFIG_STACK_UNWIND is not set. +* Tue May 19 2009 jblunck@suse.de +- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move + mach-types.h to arch/include/asm. +* Tue May 19 2009 jeffm@suse.com +- Set CONFIG_FRAMEBUFFER_CONSOLE=y +* Tue May 19 2009 jeffm@suse.com +- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on + x86/x86_64 (bnc#504608) +* Tue May 19 2009 jbeulich@novell.com +- patches.xen/sfc-endianness: fix building with gcc 4.4. +* Tue May 19 2009 jbeulich@novell.com +- Update Xen patches to 2.6.30/rc6-git3 and c/s 873. +* Mon May 18 2009 jeffm@suse.com +- Updated to 2.6.30-rc6-git3. + - Eliminated 4 patches. +* Fri May 15 2009 jeffm@suse.de +- doc/README.SUSE: Updated to reflect building in an external + directory so as not to contaminate /usr/src/linux +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix path in + /usr/src/linux-obj/.../Makefile. +* Thu May 14 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = + [%%version-%%source_rel] in the -devel packages (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires + (bnc#503280). +* Wed May 13 2009 mmarek@suse.cz +- rpm/mkspec: fix kernel-syms requires (bnc#503280). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/dup2-retval-fix: dup2: Fix return value with + oldfd == newfd and invalid fd (bnc#498042). +* Mon May 11 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. +- patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with + NULL xattr root w/ xattrs disabled. +- patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup + perms when xattrs are disabled. +- patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing + privroot w/ xattrs enabled. +* Mon May 11 2009 jeffm@suse.de +- Updated to 2.6.30-rc5-git1. + - Eliminated 4 patches. +* Wed May 06 2009 gregkh@suse.de +- Update config files. update vanilla configs so that the build works. +* Wed May 06 2009 gregkh@suse.de +- Update config files. +- patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core + maintained /dev tmpfs. +* Tue May 05 2009 jeffm@suse.com +- Update config files. +* Tue May 05 2009 jeffm@suse.com +- Update to 2.6.30-rc4-git1. +- patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: + kbuild, modpost: fix "unexpected non-allocatable" warning with + SUSE gcc. +* Tue May 05 2009 jbeulich@novell.com +- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build. +* Tue May 05 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build. +* Tue May 05 2009 jbeulich@novell.com +- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. +- patches.arch/x86_64-unwind-annotations: Refresh. +* Tue May 05 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc4 and c/s 867. +- Update i386 and x86_64 config files. +- config.conf: Re-enable Xen. +* Tue May 05 2009 teheo@suse.de +- patches.suse/kbuild-icecream-workaround: kbuild: add workaround + for icecream bug (bnc#495786). +* Fri May 01 2009 jeffm@suse.com +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +* Fri May 01 2009 jeffm@suse.com +- Update to 2.6.30-rc4. + - Eliminated 2 patches. +* Fri May 01 2009 jeffm@suse.com +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex + to enclose lookup_one_len. +- patches.kernel.org/patch-2.6.30-rc3-rc4: +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete. +* Thu Apr 30 2009 mmarek@suse.cz +- scripts/submit-to-bs: tentative script to submit a new kernel to + openSUSE:Factory +* Tue Apr 28 2009 npiggin@suse.de +- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here + to fix the lock order problem when the patch is updated to HEAD. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, + rename the variable back to @RELEASE_PREFIX@. +* Mon Apr 27 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to + the rpm release string (note that this won't have any effect in + the openSUSE:* projects). +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. + - build rtc_cmos driver into the kernel for i386 and x86-64 default + kernels. This should automatically take care of the rtc/system time + syncing so we don't need to do it in a boot script and should speed + up booting time a lot. +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y +* Fri Apr 24 2009 gregkh@suse.de +- Update config files. change to use CONFIG_USB=y +* Thu Apr 23 2009 jeffm@suse.de +- Added legacy config. +* Thu Apr 23 2009 jeffm@suse.de +- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch +* Thu Apr 23 2009 jeffm@suse.de +- Moved i386 kernel-default to kernel-legacy. +- Moved i386 kernel-pae config to kernel-default. +- Disabled CONFIG_ISA in i386 kernel-default to improve boot speed. +* Thu Apr 23 2009 jeffm@suse.de +- Update to 2.6.30-rc3. +* Thu Apr 23 2009 jeffm@suse.de +- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: + hpet: fix periodic mode programming on AMD 81xx. +- patches.fixes/hpet-boot-fix: Delete. +* Mon Apr 20 2009 jeffm@suse.de +- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!" +* Mon Apr 20 2009 jeffm@suse.de +- Update to 2.6.30-rc2-git6. +* Wed Apr 15 2009 jeffm@suse.de +- Update to 2.6.30-rc2. + - trace and xen flavors disabled. + - CONFIG_OTUS disabled on ppc. + - request-based multipath could use some testing. + - Eliminated 96 patches. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink + for i386. +* Fri Apr 10 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no + modules are supported. +* Fri Apr 10 2009 jeffm@suse.com +- Moved linux-obj symlink handling to kernel-$flavor-devel. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/package-descriptions: Add comment. +* Fri Apr 10 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp + file to source-timestamp instead, so that autobuild does not add + the timestamp verbatim. +* Thu Apr 09 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29 final and c/s 854. +- patches.xen/sfc-external-sram: enable access to Falcon's + external SRAM (bnc#489105). +- patches.xen/sfc-sync-headers: sync Solarflare accelerator + headers (bnc#489105). +- Update Xen config files. +* Wed Apr 08 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Fix last change: do not add the + timestamp if it is already added verbatim (by prepare_spec during + checkin) +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Add source timestamp to package + descriptions. +* Tue Apr 07 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to + generated spec files. +- rpm/package-descriptions: descriptions of binary packages. +* Mon Apr 06 2009 jeffm@suse.com +- Enabled STAGING on !x86 and disabled COMEDI. +* Mon Apr 06 2009 jeffm@suse.com +- patches.rpmify/split-package: Enable +* Mon Apr 06 2009 jeffm@suse.com +- Update config files: Fixed i386-vanilla. +* Mon Apr 06 2009 jeffm@suse.com +- patches.fixes/xfs-export-debug: xfs: export assertion handler. +* Mon Apr 06 2009 jeffm@suse.com +- Switch from SPARSEMEM to DISCONTIGMEM on i386. +* Sun Apr 05 2009 jeffm@suse.com +- scripts/tar-up_and_run_mbuild.sh: Added pae to the important + specfiles list. +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Fix missing ia64-debug. +* Fri Apr 03 2009 jeffm@suse.com +- patches.xen/sfc-resource-driver: Fix uninitialized var warning. +* Fri Apr 03 2009 jeffm@suse.com +- Drop NR_CPUS back to 128 on i386. +* Fri Apr 03 2009 jeffm@suse.com +- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE. +* Fri Apr 03 2009 jeffm@suse.de +- Update config files: Enabled STAGING drivers on -vanilla. +* Fri Apr 03 2009 jblunck@suse.de +- patches.rpmify/rpm-kernel-config: Rediff. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols + compute-PATCHVERSION.sh +* Fri Apr 03 2009 jeffm@suse.com +- Update config files: Enabled STAGING drivers. +* Fri Apr 03 2009 jeffm@suse.com +- Sync up kernel configs for x86/x86_64 flavors. +* Fri Apr 03 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary + spec files anymore. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/modversions: keep the override keyword in --pack. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove + @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file + named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead. +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) + expansion +* Thu Apr 02 2009 mmarek@suse.cz +- rpm/mkspec: new script to generate spec files from *.spec.in + templates +- rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the + source rpm +- scripts/tar-up.sh: just tar up patches directories and call + mkspec +* Tue Mar 31 2009 mmarek@suse.cz +- rpm/kernel-dummy.spec.in: Delete. +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.KSYMS: Add to repo. +* Tue Mar 31 2009 mmarek@suse.cz +- config.conf, rpm/old-packages.conf, scripts/arch-symbols, + scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch + symbols completely, only map the various ix86 archs to i386. +* Tue Mar 31 2009 mmarek@suse.cz +- doc/README.SUSE: allow_unsupported_modules needs to be set before + installing the kernel (bnc#484664). +* Tue Mar 31 2009 jeffm@suse.de +- Add %%changelog to spec files +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Clean up %%build_$flavor macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in: Create kernel-source-vanilla +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in: Create a %%using_buildservice macro +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/sequence-patch.sh, scripts/tar-up.sh: + kernel-{binary,source}: Remove arch guards +* Tue Mar 31 2009 jeffm@suse.de +- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: Move development files from kernel-source to + kernel-$flavor-devel +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in: Use macros for cpu_arch +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + kernel-{source,binary}: Use path-related rpm macros +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: + Use a %%kernelrelease macro. +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: + Use %%variant instead of $variant +* Tue Mar 31 2009 jeffm@suse.de +- kernel-source: Kill old obsoletes +* Tue Mar 31 2009 jeffm@suse.de +- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + rpm/kernel-syms.spec.in, scripts/tar-up.sh: + Use %%var instead of @VAR@ except where necessary +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Sort by flavor, not architecture +* Tue Mar 31 2009 jeffm@suse.de +- kernel-syms: Stop the architecture %%else madness +* Tue Mar 31 2009 jeffm@suse.de +- kernel-binary: Stop the architecture %%else madness +* Mon Mar 30 2009 jeffm@suse.de +- Removed -RT guards and a dead patch. +* Mon Mar 30 2009 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: Delete. +* Mon Mar 30 2009 jeffm@suse.de +- patches.suse/reiserfs-inode-init: Delete. +* Thu Mar 26 2009 mmarek@suse.cz +- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and + VARIANT variables. +* Tue Mar 24 2009 jeffm@suse.de +- Update to 2.6.29-final. + - Eliminated 4 patches. +* Fri Mar 20 2009 jbeulich@novell.com +- Update Xen config files. +- Update Xen patches to 2.6.29-rc8 and c/s 821. +* Wed Mar 18 2009 mmarek@suse.cz +- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" + to the release, breaks plain rpmbuild. +* Tue Mar 17 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't generate symsets +- rpm/kernel-syms.spec.in: don't package symsets +- rpm/find-provides: disable symset provides +- rpm/macros.kernel-source: don't check for /boot/symsets* + (fate#305945) +* Tue Mar 17 2009 knikanth@suse.de +- patches.fixes/loop-barriers: Delete. +- patches.fixes/loop-barriers2: Delete. + Remove non-mainline patches to loop driver making it honour + O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249) +* Mon Mar 16 2009 bphilips@suse.de +- README: add rough guide to updating KABI +* Sat Mar 14 2009 jeffm@suse.com +- Update to 2.6.29-rc8. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.fixes/fix-nf_conntrack_slp, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: fix build warnings. +* Thu Mar 12 2009 jbeulich@novell.com +- Update Xen patches addressing several issues in initial commit +- Update Xen config files (re-enable oprofile, disable novfs). +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations + in entry_64-xen.S. +* Thu Mar 12 2009 jbeulich@novell.com +- patches.arch/x86_64-unwind-annotations: fix unwind annotations in + entry_64.S. +* Thu Mar 12 2009 rgoldwyn@suse.de +- patches.suse/novfs-creds-change-2.6.29: Changing credential + according to new task_struct. +* Wed Mar 11 2009 jblunck@suse.de +- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf + is not empty. +* Mon Mar 09 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: renamed modprobe config to + /etc/modprobe.d/50-module-renames.conf (required by new + module-init-tools). +* Mon Mar 09 2009 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build. +* Mon Mar 09 2009 jbeulich@novell.com +- Update Xen config files (get tracing options back in sync with + default). +* Fri Mar 06 2009 jeffm@suse.de +- Update config files: Enable CONFIG_FRAME_POINTER on Xen. +* Fri Mar 06 2009 jeffm@suse.de +- config.conf: Enabled Xen for building. +* Fri Mar 06 2009 jbeulich@novell.com +- Update Xen patches to 2.6.29-rc7. +* Fri Mar 06 2009 jbenc@suse.cz +- Update config files: enabled wireless debugging in -debug flavors. +* Fri Mar 06 2009 mmarek@suse.cz +- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, + rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, + scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy +- rpm/prepare-build.sh: Delete. +* Wed Mar 04 2009 jeffm@suse.com +- Update to 2.6.29-rc7. + - Eliminated 1 patch. +* Wed Mar 04 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) + in kernel-vanilla.spec. +* Wed Mar 04 2009 jeffm@suse.com +- patches.suse/export-security_inode_permission: Export + security_inode_permission for aufs. +* Thu Feb 26 2009 jeffm@suse.com +- scripts/tar-up.sh: Add -u to update existing spec files. +* Thu Feb 26 2009 sven@suse.de +- rpm/kernel-binary.spec.in: Fix sub-package install-time conflict. +* Wed Feb 25 2009 mmarek@suse.cz +- scripts/tar-up.sh: create tarballs that don't change + unnecessarily: set owner/group to nobody/nobody, mtime to time of + the latest commit and sort the input files. +* Wed Feb 25 2009 jeffm@suse.com +- Update to 2.6.29-rc6-git1. +* Sat Feb 21 2009 mmarek@suse.cz +- rpm/kernel-syms.spec.in: also check if the package versions match + (bnc#478462) +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix 32-bit arch_unwind_init_running(). +* Fri Feb 20 2009 jbeulich@novell.com +- patches.suse/stack-unwind: fix patch fuzz. +* Fri Feb 20 2009 jbeulich@novell.com +- misc/xen-port-patches.py: Adjust fro new x86 header placement. +- patches.arch/x86_64-unwind-annotations: fix unwind annotations + (bnc#472783). +- patches.suse/stack-unwind: Properlz hook up unwinder again. +* Fri Feb 20 2009 jeffm@suse.de +- patches.suse/kdb-common: Build fix with -I directive. +* Fri Feb 20 2009 jeffm@suse.de +- Update config files. +* Fri Feb 20 2009 jeffm@suse.de +- Update to 2.6.29-rc5-git3. + - Eliminated 1 patch. +* Thu Feb 19 2009 mmarek@suse.cz +- rpm/symsets.pl: allow passing only Module.symvers and no modules +* Wed Feb 18 2009 olh@suse.de +- disable ppc601 support, disable unused framebuffer drivers +* Wed Feb 18 2009 olh@suse.de +- disable kdump on ppc32 +* Mon Feb 16 2009 jeffm@suse.com +- Update config files. +* Sat Feb 14 2009 jeffm@suse.de +- Update to 2.6.29-rc5. +* Fri Feb 13 2009 jeffm@suse.de +- Update to 2.6.29-rc4-git7. + - Eliminated 2 patches. +* Mon Feb 09 2009 jeffm@suse.de +- patches.rpmify/spin_is_contended-fix: spin_is_contended + Kconfig fixes. +* Mon Feb 09 2009 jeffm@suse.de +- Updated to 2.6.29-rc4. + - Eliminated 3 patches. +* Fri Feb 06 2009 jeffm@suse.com +- patches.fixes/fix-warning-while-mapping-0-1MB-range-with-dev-mem: + x86, pat: fix warn_on_once() while mapping 0-1MB range. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: fix + last change: don't pass -e to weak-modules2. +* Fri Feb 06 2009 mmarek@suse.cz +- rpm/kernel-module-subpackage, rpm/post.sh, rpm/postun.sh: pass + down shell options like -x to weak-modules2 to make debugging + with rpm -ivv easier. +* Tue Feb 03 2009 jeffm@suse.de +- patches.fixes/fix-nf_conntrack_slp: make nf_conntrack_slp + actually work (bnc#470963). +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/tar-up.sh: fix branch name in KOTD packages. +* Tue Feb 03 2009 olh@suse.de +- config.conf: readde -debug flavor for ppc64 +* Tue Feb 03 2009 olh@suse.de +- patches.fixes/scsi-ibmvfc_prli_initiator_fix.patch: + Better handle other FC initiators (bnc#471217 - LTC51238) +* Tue Feb 03 2009 mmarek@suse.cz +- scripts/wd-functions.sh: display master as "master", not "HEAD" + or "". +* Mon Feb 02 2009 jeffm@suse.de +- patches.fixes/ath9k-fix-led_device_naming.diff: ath9k: fix + led naming. +- patches.fixes/b43legacy-fix-led_device_naming.diff: b43legacy: + fix led naming. +- patches.fixes/iwlwifi-fix-iwl-3945_led_device_naming.diff: + iwlwifi: another led naming fix. +- patches.fixes/iwlwifi-fix-iwl-led_device_naming.diff: iwlwifi: + fix led naming . +- patches.fixes/rt2x00-fix-led_device_naming.diff: rt2x00: + fix led naming. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3-git3. + - Eliminated 6 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Updated to 2.6.29-rc3. + - AppArmor is disabled. + - Xen is disabled. + - Eliminated 745 patches. +* Mon Feb 02 2009 jeffm@suse.de +- Enabled patches.suse/reiserfs_warning-reentrant +* Mon Feb 02 2009 rw@suse.de +- patches.fixes/xpc-pass-physical, + patches.kabi/xpc-pass-physical: + kABI: restore upstream patch, add ABI cover-up. (bnc#458811) +* Mon Feb 02 2009 olh@suse.de +- patches.fixes/serial-jsm-enable_ms.patch: + Add enable_ms to jsm driver (bnc#471224 - LTC51066) +* Mon Feb 02 2009 olh@suse.de +- patches.arch/ppc-optimize-sync.patch: + Optimise smp_{r,w}mb and mutex (bnc#471222 - LTC51356) +* Sat Jan 31 2009 gregkh@suse.de +- refresh patches for fuzz due to 2.6.27.14-rc1 import. +* Sat Jan 31 2009 gregkh@suse.de +- patches.kabi/abi-fix-add-epoll_devs-back-to-struct-user_struct.patch: + ABI fix: add epoll_devs back to struct user_struct. +* Sat Jan 31 2009 gregkh@suse.de +- Update to 2.6.27.14-rc1 + - lots of security fixes + - lots of bugfixes + - obsoletes: + - patches.drivers/alsa-virtuoso-no-eeprom-overwrite + - patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch + - patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch + - patches.fixes/sysfs-fix-problems-with-binary-files.patch + - patches.fixes/xpc-fix-NULL-deref + - patches.fixes/xpc-write-barrier +* Fri Jan 30 2009 olh@suse.de +- patches.arch/ppc-pseries-migration_hang_fix.patch: + Fix partition migration hang under load (bnc#470563 - LTC51153) +* Fri Jan 30 2009 olh@suse.de +- disable CONFIG_DEBUG_STACKOVERFLOW and CONFIG_DEBUG_STACK_USAGE + on ppc/ppc64 +* Fri Jan 30 2009 teheo@suse.de +- patches.drivers/libata-fix-EH-device-failure-handling: libata: + fix EH device failure handling (bnc#470845). +* Thu Jan 29 2009 jjolly@suse.de +- patches.arch/s390-08-08-add_qdio_utilization.patch: zfcp: + queue_full is lacking the entry for qdio utilization + (bnc#466462). +* Thu Jan 29 2009 gregkh@suse.de +- add ability to debug kernel using USB debug connector. +- Update config files. +- patches.suse/usb-move-ehci-reg-def.patch: usb: move ehci + reg def. +- patches.suse/x86-usb-debug-port-early-console-v4.patch: x86: + usb debug port early console, v4. +* Thu Jan 29 2009 mmarek@suse.cz +- patches.kabi/abi-fix-add-s_syncing-back-to-struct-super_block.patch + patches.kabi/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch + patches.kabi/export-iwl_rx_allocate + patches.kabi/sched-kabi-compat-hack.patch: Introduce + patches.kabi/ for patches that only work around kabi issues and + can be safely dropped at the next SP. +* Wed Jan 28 2009 agruen@suse.de +- patches.xen/xen-x86-mark_rodata_rw.patch: Add missing pageattr.c + changes to pageattr-xen.c (bnc#439348). +* Wed Jan 28 2009 agruen@suse.de +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). +- patches.xen/xen-x86-mark_rodata_rw.patch: xen specific part + (bnc#439348). +* Wed Jan 28 2009 mmarek@suse.cz +- config/s390/s390: the -man package still fails for s390, disable + it +* Wed Jan 28 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix build of the -man subpackage on + 31bit s390 +* Wed Jan 28 2009 mmarek@suse.cz +- fix kernel-default.ppc64 reference symsets +* Wed Jan 28 2009 jslaby@suse.cz +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). + [cpu_mask_to_apicid bigsmp fix] +* Wed Jan 28 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-module_alias.patch: + map scsi proc_name to module name (bnc#459933 - LTC50724) +* Wed Jan 28 2009 jeffm@suse.de +- Update config files: Disable ftrace in -debug on ppc64 +* Wed Jan 28 2009 jeffm@suse.de +- config.conf: Added -debug flavor for ppc64. +* Tue Jan 27 2009 bwalle@suse.de +- patches.drivers/libfc-set-the-release-function.diff: + Whitespace change. +* Tue Jan 27 2009 hare@suse.de +- patches.drivers/libfc-fix-read-IO-data-integrity: libfc: + IO data integrity issue when a IO data frame lost (bnc#469536). +* Tue Jan 27 2009 jbeulich@novell.com +- re-enable patches.xen/xen3-e1000e_Export_set_memory_ro-rw. +* Tue Jan 27 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + include prototype for PFN_UP() (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls. + readded to avoid kabi change +* Mon Jan 26 2009 jeffm@suse.de +- config.conf: Added kernel-vmi to i386. +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + use PFN_UP() for end_pfn (bnc#462546 - LTC50009) +* Mon Jan 26 2009 mmarek@suse.cz +- kabi: import FCoE changes +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: disable + wrong debug message again. +* Mon Jan 26 2009 rw@suse.de +- patches.fixes/taskstats-alignment: + IA64: fill 'struct taskstats' on stack and 'memcpy' result to skb. + (bnc#448410) +* Mon Jan 26 2009 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix calculation of reserve_size (bnc#462546 - LTC50009) +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/disable-lro-per-default: Disable LRO per default + in igb and ixgbe. (bnc#467519) +* Mon Jan 26 2009 jbeulich@novell.com +- Just comment out patches.xen/xen3-e1000e_* (to address build error) + until disposition of their originals is known. +* Mon Jan 26 2009 kkeil@suse.de +- patches.fixes/sctp_do_not_use_stale_copy_of_sk: Do not use + stale copy of sk. (bnc#440104) +* Mon Jan 26 2009 jblunck@suse.de + Renamed some patches so they get included in vanilla builds. +- patches.rpmify/firmware-path: Renamed. +- patches.rpmify/no-include-asm: Renamed. +- patches.suse/md-raid-metadata-PAGE_SIZE.patch: Renamed. +* Mon Jan 26 2009 olh@suse.de +- patches.suse/led_classdev.sysfs-name.patch: use correct name + for /sys/devices/virtual/leds/ entries (bnc#468350) +* Mon Jan 26 2009 kkeil@suse.de +- patches.suse/e1000e_Export_set_memory_ro-rw: Delete. +- patches.suse/e1000e_allow_bad_checksum: Delete. +- patches.suse/e1000e_call_dump_eeprom: Delete. +- patches.suse/e1000e_ioremap_sanity_check: Delete. +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + Delete. + Remove not mainline e1000e patches which were added to help with + the e1000e NVM corruption - root issue is fixed +* Mon Jan 26 2009 kkeil@suse.de +- patches.drivers/tg3_libphy_workaround: tg3 libphy workaround. + (bnc#468725) +* Mon Jan 26 2009 hare@suse.de +- supported.conf: Correct spelling for dm-least-pending + path checker. +* Mon Jan 26 2009 hare@suse.de +- patches.suse/dm-mpath-check-info-before-access: Kernel Oops + during path failover (bnc#458393). +* Sun Jan 25 2009 gregkh@suse.de +- refresh patch fuzz now that 2.6.27.13 is in tree +* Sun Jan 25 2009 gregkh@suse.de +- Update to final version of 2.6.27.13 +* Sun Jan 25 2009 gregkh@suse.de +- dynamic debugging fixes backported from upstream: +- patches.drivers/driver-core-add-newlines-to-debugging-enabled-disabled-messages.patch: + driver core: add newlines to debugging enabled/disabled + messages. +- patches.drivers/driver-core-fix-dynamic_debug-cmd-line-parameter.patch: + Driver core: fix 'dynamic_debug' cmd line parameter. +- patches.drivers/driver-core-fix-using-ret-variable-in-unregister_dynamic_debug_module.patch: + driver core: fix using 'ret' variable in + unregister_dynamic_debug_module. +* Sat Jan 24 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: + (fix return of an unitialized value (bnc#469017) +* Sat Jan 24 2009 mmarek@suse.cz +- update kabi files: ignore changes in struct pcie_link_state as + it is an internal structure only. +* Sat Jan 24 2009 mmarek@suse.cz +- patches.suse/genksyms-add-override-flag.diff: genksyms: add + --override flag. +- rpm/kernel-binary.spec.in: set KBUILD_OVERRIDE=1 +* Sat Jan 24 2009 ghaskins@suse.de +- patches.fixes/sched-kabi-compat-hack.patch: sched: leave + RT_GROUP_SCHED structure components intact to preserve kABI. + broke kabi with fix for 456542 +* Sat Jan 24 2009 trenn@suse.de +- patches.fixes/cpufreq_export_latency.patch: CPUFREQ: Introduce + /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_transition_latency + (bnc#464461). +- patches.fixes/cpufreq_ondemand_adjust_sampling_rate_limit.patch: + CPUFREQ: ondemand/conservative: sanitize sampling_rate + restrictions (bnc#464461). +- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + CPUFREQ: ondemand: Limit default sampling rate to 300ms + max. (bnc#464461). +- patches.fixes/x86_cpufreq_powernow-k8_acpi_latency_values.patch: + X86 powernow-k8 cpufreq: Get transition latency from acpi _PSS + object (bnc#464461). +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/xfs-dmapi-fixes: xfs/dmapi: fix crash on mount + (bnc#458027). +* Fri Jan 23 2009 ghaskins@suse.de +- Update config files: Disable RT_GROUP_SCHED (bnc#456542). + The RT_GROUP_SCHED feature is experimental and clearly broken, so + lets turn it off for now. +* Fri Jan 23 2009 jeffm@suse.de +- patches.fixes/hpilo-open-close-fix: hpilo open/close fix + (bnc#466517). +* Fri Jan 23 2009 hare@suse.de +- patches.suse/dm-mpath-requeue-for-stopped-queue: Handle I/O + on stopped queues correctly (bnc#458393). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.suse/mnt-want-write-speedup.patch, + patches.suse/mnt_clone_write.patch: modified not to break kABI, + enabled (bnc#436953). +* Fri Jan 23 2009 jbenc@suse.cz +- patches.fixes/iwlagn-fix-rfkill.patch: iwlagn: fix hw-rfkill + while the interface is down (bnc#446158). +* Fri Jan 23 2009 mmarek@suse.cz +- kabi/severities: temporarily enable changes in FcOE modules. +* Fri Jan 23 2009 hare@suse.de +- patches.arch/s390-08-06-personality.patch: kernel: setting 32 + bit personality doesn't work (bnc#466462). +- patches.arch/s390-08-07-compat_wrappers.patch: kernel: + Add missing wrapper functions for 31 bit compat + syscalls. (bnc#466462,LTC#51229). +- patches.fixes/block-leave-the-request-timeout-timer-running: + Delete obsolete patch. +* Fri Jan 23 2009 bwalle@suse.de +- patches.drivers/fcoe-change-fcoe_sw-sg_tablesi.diff: change + fcoe_sw sg_tablesize to SG_ALL (bnc #459142). +- patches.drivers/fcoe-check-return-for-fc_set_m.diff: check + return for fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-fix-frame-length-validati.diff: fix frame + length validation in the early receive path (bnc #459142). +- patches.drivers/fcoe-fix-incorrect-use-of-struct-module.diff: + fcoe: fix incorrect use of struct module (bnc #468051). +- patches.drivers/fcoe-improved-load-balancing-i.diff: improved + load balancing in rx path (bnc #459142). +- patches.drivers/fcoe-logoff-of-the-fabric-when.diff: Logoff + of the fabric when destroying interface (bnc #459142). +- patches.drivers/fcoe-remove-warn_on-in-fc_set.diff: remove + WARN_ON in fc_set_mfs (bnc #459142). +- patches.drivers/fcoe-user_mfs-is-never-used.diff: user_mfs is + never used (bnc #459142). +- patches.drivers/libfc-add-fc_disc-c-locking-co.diff: Add + fc_disc.c locking comment block (bnc #459142). +- patches.drivers/libfc-ensure-correct-device_pu.diff: libfc: + Ensure correct device_put/get usage (round 2). +- patches.drivers/libfc-fix-rport-recursive-lock.diff: libfc: + Fix rport recursive lock on rport mutex (bnc #459142). +- patches.drivers/libfc-handle-rrq-exch-timeout.diff: libfc: + handle RRQ exch timeout (bnc #465596). +- patches.drivers/libfc-improve-fc_lport-c-locki.diff: Improve + fc_lport.c locking comment block (bnc #459142). +- patches.drivers/libfc-improve-fc_rport-c-locki.diff: Improve + fc_rport.c locking comment block (459142). +- patches.drivers/libfc-make-fc_disc-inline-with.diff: make + fc_disc inline with the fc_lport structure (bnc #459142). +- patches.drivers/libfc-make-rscn-parsing-more-r.diff: make RSCN + parsing more robust (bnc #459142). +- patches.drivers/libfc-make-sure-we-access-the.diff: make sure + we access the CRC safely (bnc #459142). +- patches.drivers/libfc-pass-lport-in-exch_mgr_r.diff: libfc: + Pass lport in exch_mgr_reset (bnc #465596). +- patches.drivers/libfc-remove-debug-print-state.diff: libfc: + Remove debug print statement, too verbose (bnc #459142). +- patches.drivers/libfc-set-the-release-function.diff: Set + the release function for the rport's kobject (round 2) + (bnc #459142). +- patches.drivers/libfc-updated-comment-for-orde.diff: updated + comment for order of em and ex locks (bnc #459142). +- patches.drivers/libfc-updated-libfc-fcoe-modul.diff: updated + libfc fcoe module ver to 1.0.6 (bnc #459142). +- patches.drivers/libfc-use-an-operations-struct.diff: use an + operations structure for rport callbacks (bnc #459142). +- patches.drivers/libfc-when-rport-goes-away-re.diff: libfc: + when rport goes away (re-plogi), clean up exchanges to/from + rport (bnc #465596). +- patches.drivers/libfc_locking.diff: libfc, fcoe: fixed locking + issues with lport->lp_mutex around lport->link_status (bnc + [#468053]). +- patches.drivers/libfc_rport.diff: libfc: rport retry on LS_RJT + from certain ELS (bnc #468054). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/qla2xxx-check-fc-rport-validity: + qla2xxx: added check for fcport is valid in + qla2x00_terminate_rport_io(). (bnc#467624). +* Fri Jan 23 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-t1616-quirk: ALSA: hda - + Add quirk for Gateway T1616 laptop (bnc#467597). +- patches.drivers/alsa-hda-hp-dv4-quirk: ALSA: hda - Add model + entry for HP dv4. +- patches.drivers/alsa-hda-intel-d945-ref-quirk: ALSA: hda - + Add model=ref for Intel board with STAC9221 (bnc#406529). +* Fri Jan 23 2009 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: block: Rediff +- patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up() (bnc#464155). +- Add missing patches to series.conf: + patches.fixes/round-jiffies-up + patches.fixes/block-use-round_jiffies_up + patches.fixes/block-fix-blk_start_queueing + patches.fixes/suppress-buffer-IO-errors + patches.fixes/block-optimizations-in-blk_rq_timed_out_timer + patches.fixes/block-add-comment-in-blk_rq_timed_out +* Fri Jan 23 2009 olh@suse.de +- update patches.fixes/scsi-ibmvscsi-vio_leak.patch: + handle also drivers/scsi/ibmvscsi/ibmvfc.c +* Fri Jan 23 2009 sjayaraman@suse.de +- patches.fixes/cifs-fix-oops-on-ipv6-mount: cifs: make sure we + allocate enough storage for socket address (467691). +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-wb_sync_hold-enum-writeback_sync_modes.patch: + ABI fix: add WB_SYNC_HOLD enum writeback_sync_modes. +* Fri Jan 23 2009 gregkh@suse.de +- patches.kernel.org/abi-fix-add-s_syncing-back-to-struct-super_block.patch: + ABI fix: add s_syncing back to struct super_block. +* Fri Jan 23 2009 gregkh@suse.de +- update to 2.6.27.13-rc1: + - security updates + - lots of bugfixes + - obsoletes: + - patches.arch/ppc-fix_hugepage_check.patch + - patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back + - patches.drivers/alsa-hda-samsung-q45-quirk + - patches.fixes/security-introduce-missing-kfree.patch + - patches.fixes/xpc-fix-heartbeat +- Update config files. +* Fri Jan 23 2009 kkeil@suse.de +- patches.drivers/e1000-fix-shared-emc.patch: e1000: fix bug + with shared interrupt during reset (bnc#396687) +* Thu Jan 22 2009 tonyj@suse.de +- patches.fixes/revert-bgcolor-line-feed-93f78da4.patch: Revert + "vt: fix background color on line feed" (bnc#418613). +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/iwlwifi-fix-rs_get_rate-oops.patch: iwlwifi: + fix rs_get_rate WARN_ON() (bnc#456002). +- Reordered wireless patches to group together patches touching the same + driver. +* Thu Jan 22 2009 bphilips@suse.de +- patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch: + disable catas_reset by default to avoid problems with EEH + (bnc#456389). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + fixed kABI breakage. (bnc#458811) +* Thu Jan 22 2009 bwalle@suse.de +- scripts/tar-up_and_run_mbuild.sh: s390 (the 31 bit variant) is + not an important spec file. +* Thu Jan 22 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: fixed kABI + breakage, reenabled. +* Thu Jan 22 2009 mmarek@suse.cz +- rpm/modversions: eat the "override" keyword before parsing the + symbol definition. +* Thu Jan 22 2009 olh@suse.de +- patches.fixes/scsi-ibmvscsi-vio_leak.patch: + Correct VIO bus/device CMO accounting problems (bnc#468304 - LTC51205) +* Thu Jan 22 2009 olh@suse.de +- patches.suse/of_platform_driver.module-owner.patch: + add missing module symlink to /sys/bus/*/driver/* + in struct of_platform_driver. +* Thu Jan 22 2009 kkeil@suse.de +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix - new version from Intel (bnc#465923) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). + (fix compilation on i386 and add hpet64 to kernel-parameters.txt) +* Thu Jan 22 2009 jbohac@suse.cz +- patches.arch/x86_64-hpet-64bit-timer.patch: allow 64-bit mode + for HPET Timer0 (bnc#456700). +* Thu Jan 22 2009 rw@suse.de +- patches.fixes/xpc-pass-physical: + sgi-xpc: need to pass the physical address, not virtual. (bnc#458811) +- patches.fixes/xpc-fix-heartbeat: + sgi-xpc: eliminate false detection of no heartbeat. (bnc#464545) +* Thu Jan 22 2009 jkosina@suse.de +- patches.fixes/input-add-nomux-dell-vostro-1510.patch: Input: + add Dell Vostro 1510 to nomux list (bnc#404881). +* Thu Jan 22 2009 jblunck@suse.de +- scripts/compute-PATCHVERSION.sh: Fix SRCVERSION parsing (bnc#465113). +* Thu Jan 22 2009 tiwai@suse.de +- patches.drivers/alsa-hda-add-volume-offset: ALSA: hda - Add + extra volume offset to standard volume amp macros (bnc#466428). +- patches.drivers/alsa-hda-stac-reduce-volume-scale: ALSA: hda - + Halve too large volume scales for STAC/IDT codecs (bnc#466428). +* Thu Jan 22 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.12-update: Update lpfc from 8.2.8.11 + to 8.2.8.12 (bnc#467713). +* Thu Jan 22 2009 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: fix missing jl arg +* Wed Jan 21 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: delete duplicate error message in the + kabi checks +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/remove_kernel_physical_mapping_init_from_init: + move kernel_physical_mapping_init to __meminit (bnc#467474). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: disabled, as it changes + kABI. +* Wed Jan 21 2009 gregkh@suse.de +- patches.fixes/security-introduce-missing-kfree.patch: security: + introduce missing kfree (bnc#467322). +- patches.fixes/sysfs-fix-problems-with-binary-files.patch: + sysfs: fix problems with binary files. +* Wed Jan 21 2009 rw@suse.de +- patches.arch/ia64-page-migration.fix: + fix deadlock caused by cpe_migrate.ko and mark it supported. + (bnc#464676) +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/sn-irq-affinity: sn2: preserve irq affinity set + in PROM (bnc#457679). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/uv_zalias_support: uv: Support for non-nasid 0 + systems (bnc#458869). +* Wed Jan 21 2009 jeffm@suse.de +- patches.fixes/xpc-fix-NULL-deref: sgi-xpc: Remove NULL pointer + dereference. (bnc#466563). +- patches.fixes/xpc-write-barrier: sgi-xpc: ensure flags are + updated before bte_copy (bnc#466563). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/ipw2200-workaround-firmware-restarts-when-scanning.patch: + ipw2200: fix scanning while associated (bnc#459067). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/iwl3945-fix-rfkill.patch: iwl3945: report + killswitch changes even if the interface is down (bnc#446013). +* Wed Jan 21 2009 jbenc@suse.cz +- patches.fixes/mac80211-add-direct-probe.patch: mac80211: + add direct probe before association (bnc#461889). +* Wed Jan 21 2009 hare@suse.de +- patches.drivers/mptsas-discover-all-devices: mptsas driver + fails to discover devices (bnc#459932). +* Wed Jan 21 2009 jbeulich@novell.com +- Update Xen patches to 2.6.27.12. +- patches.xen/764-netback-foreign-pages.patch: netback: handle + non-netback foreign pages. +- patches.xen/769-evtchn-CPU-offline.patch: evtchn: Fix CPU offlining + to switch all affected ports belonging to a particular /dev/evcthn + user. +- patches.xen/gso-size-check.patch: gso: Ensure that the packet + is long enough. +- patches.xen/xen-S3-MSI: fix Dom0 resume from S3 when MSI is + in use (bnc#435596). +- patches.xen/xen3-e1000e_ioremap_sanity_check: ioremap sanity + check to catch mapping requests exceeding the BAR sizes + (bnc#425480). +- patches.xen/xen3-x86-fix-kmap-contig.patch: x86: contiguous + kmap fix (bnc#449812). +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + implement correct model matching +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/dm-mpath-tracking-nr-bytes: + lpp_end_io gets nr_bytes as third arg +* Wed Jan 21 2009 olh@suse.de +- update patches.suse/radeon-monitor-jsxx-quirk.patch: + match all JSxx/QSxx models based on the first 4 chars in 'model' +* Wed Jan 21 2009 olh@suse.de +- update patches.arch/ppc-axon-missing-msi-workaround-5.diff: + Fix MSI after kexec (bnc#467633) +* Tue Jan 20 2009 gregkh@suse.de +- clean up patch fuzz after 2.6.27.12 inclusion. +* Tue Jan 20 2009 gregkh@suse.de +- Update to the real 2.6.27.12 +* Tue Jan 20 2009 jeffm@suse.de +- patches.suse/reiserfs_warning-reentrant: reiserfs: eliminate + reiserfs_warning from uniqueness functions; Fixes deadlock. +* Tue Jan 20 2009 olh@suse.de +- patches.drivers/cxgb3-ser.patch: + reset the adapter on fatal error (bnc#466062 - LTC51042) +* Tue Jan 20 2009 jjolly@suse.de +- patches.arch/s390-08-03-iucv-cpu-hotremove.diff: iucv: failing + cpu hot remove for inactive iucv (bnc#466462,LTC#51104). +- patches.arch/s390-08-04-compat-sigaltstack.diff: + kernel: 31 bit compat sigaltstack syscall fails with + -EFAULT. (bnc#466462,LTC#50888). +- patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: + af_iucv: System hang if recvmsg() is used with MSG_PEEK + (bnc#466462,LTC#51136). +* Tue Jan 20 2009 hare@suse.de +- patches.suse/dm-mpath-accept-failed-paths: Only accept + non-existing paths when adding failed paths (bnc#467579) +* Tue Jan 20 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in: set CONFIG_DEBUG_INFO=y in the + packaged .configs if builfing debug packages (bnc#460887) +* Mon Jan 19 2009 mmarek@suse.cz +- rpm/kernel-binary.spec.in: set %%tolerate_kabi_changes to 6 +* Mon Jan 19 2009 mmarek@suse.cz +- patches.suse/export-iwl_rx_allocate: reintroduce + EXPORT_SYMBOL(iwl_rx_allocate). +* Mon Jan 19 2009 mmarek@suse.cz +- import SLE11 RC2 reference kabi +* Mon Jan 19 2009 hare@suse.de +- patches.drivers/mpt-return-all-sense-data: MPT Fusion doesn't + return all sense data (bnc#466179). +* Sat Jan 17 2009 gregkh@suse.de +- Update to 2.6.27.12-rc2 +* Fri Jan 16 2009 od@suse.de +- patches.arch/x86-call-boot-IRQ-quirks-at-end-of-device-init-and-during-resume.patch: + call boot IRQ quirks at end of device init and during resume. +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch: + update to upstream variant of this patch: + - integrate an older quirk to make IO-APIC mode work on AMD + 8131 rev. A0 and B0 + - fix boot IRQ disabling logic for AMD 813x + - remove unneeded code for AMD SB700S +* Fri Jan 16 2009 jbeulich@novell.com +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Fri Jan 16 2009 olh@suse.de +- enable mptsas in kdump kernel to allow crashdump on QS2x blades +* Fri Jan 16 2009 tiwai@suse.de + Fix STAC925x patch again +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + (yet more) STAC925x issues (bnc#460478). +* Fri Jan 16 2009 jjolly@suse.de +- patches.arch/s390-08-01-cio-fix-mp-mode.diff: cio: fix + subchannel multipath mode setup (bnc#466462,LTC#51047). +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: zfcp: fix + memory alignment for GPN_FT requests. (bnc#466462). +* Fri Jan 16 2009 gregkh@suse.de +- Update config files for vanilla kernel versions due to new config + option added in 2.6.27.12-rc1. +* Fri Jan 16 2009 gregkh@suse.de +- Update to 2.6.27.12-rc1: + - security fixes + - fixes CVE-2009-0029 + - bug fixes all over the place. + - obsoletes the following patches: + - patches.arch/ppc-cmm_no_kdump.patch + - patches.drivers/alsa-caiaq-midi-oops-fix + - patches.drivers/alsa-hda-hp-6730b-quirk + - patches.drivers/ibmvfc-host_init_delay.patch + - patches.drivers/ibmvfc-improve_sync_events.patch + - patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch + - patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch + - patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch + - patches.fixes/mm-lockless-pagecache-barrier.patch + - patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch + - patches.fixes/uv-remove-erroneous-BAU-init +- Update config files. +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-virtuoso-no-eeprom-overwrite: sound: + virtuoso: do not overwrite EEPROM on Xonar D2/D2X (bnc#462365). +* Thu Jan 15 2009 bwalle@suse.de +- patches.suse/s390-System.map.diff: + Strip L2^B symbols (bnc #456682). +* Thu Jan 15 2009 tiwai@suse.de +- patches.drivers/alsa-hda-gateway-fix: ALSA: patch_sigmatel: + Add missing Gateway entries and autodetection (bnc#460478). +- patches.drivers/alsa-hda-gateway-fix2: ALSA: hda - More fixes + on Gateway entries (bnc#460478). +- patches.drivers/alsa-hda-hp-dv5-mic-fix: ALSA: hda - Fix HP + dv5 mic input (bnc#462913). +- patches.drivers/alsa-hda-hp-dv5-quirk: ALSA: hda - Add quirk + for another HP dv5 (bnc#462913). +- patches.drivers/alsa-hda-idt92hd83-fix-typo: ALSA: hda - + Fix a typo. +- patches.drivers/alsa-hda-samsung-q45-quirk: ALSA: hda - Add + automatic model setting for Samsung Q45. +- patches.drivers/alsa-hda-seek-for-codec-id: ALSA: hda - Add + a new function to seek for a codec ID (bnc#460478). +- patches.drivers/alsa-hda-sigmatel-no-hp-reset: ALSA: hda - + Don't reset HP pinctl in patch_sigmatel.c (bnc#460478). +- patches.drivers/alsa-hda-stac925x-init-fix: ALSA: hda - Fix + missing initialization of NID 0x0e for STAC925x (bnc#460478). +* Thu Jan 15 2009 olh@suse.de +- patches.arch/ppc-fix_hugepage_check.patch: + is_hugepage_only_range() must account for both 4kB and 64kB + slices (bnc#466229 - LTC51063) +* Thu Jan 15 2009 jeffm@suse.de +- Update config files: Disabled PARAVIRT on vanilla and LGUEST. +* Thu Jan 15 2009 jeffm@suse.de +- Enabled patches.suse/unlock_page-speedup.patch +* Wed Jan 14 2009 rjw@suse.de +- patches.fixes/PCI-PM-Split-PCI-Express-port-suspend-resume.patch: + PCI PM: Split PCI Express port suspend-resume (bnc#455926). +- patches.fixes/PCI-Suspend-and-resume-PCI-Express-ports-with-interrupts-disabled.patch: + PCI: Suspend and resume PCI Express ports with interrupts + disabled (bnc#455926). +- patches.fixes/PCI-handle-PCI-state-saving-with-interrupts-disabled.patch: + PCI: handle PCI state saving with interrupts disabled + (bnc#455926). +- patches.fixes/pci-rework-suspend-of-devices-with-no-drivers.patch: + PCI: Rework default handling of suspend and resume (bnc#455926). +* Wed Jan 14 2009 jeffm@suse.de +- Update config files: Disable PARAVIRT. +* Wed Jan 14 2009 gregkh@suse.de +- refresh patches for fuzz due to update to 2.6.27.11 +* Wed Jan 14 2009 gregkh@suse.de +- Update to final version of 2.6.27.11 +* Wed Jan 14 2009 kkeil@suse.de +- patches.drivers/ixgbe-dcb-setstate.patch: Bugfix for ixgbe + and kernel DCB netlink code. (bnc#458194) +- patches.drivers/ixgbe_DCB_compile_err.patch: DCB compile + error fix. (bnc#465923) +- Update config files. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: Delete. + It came out that this is an already fixed BIOS bug. The quirk + is not needed anymore. +* Wed Jan 14 2009 trenn@suse.de +- patches.fixes/acpi_fix_double_slash_root_prefix_handling.patch: + In AcpiNsGetInternalNameLength, skip the redundant backslash + of RootPrefix (http://bugzilla.kernel.org/show_bug.cgi?id=11541 + http://www.acpica.org/bugzilla/show_bug.cgi?id=739). +- patches.fixes/acpi_video_always_update_sys.patch: video: always + update the brightness when poking "brightness" (bnc#450149). +- patches.fixes/acpi_video_handle_reversed_brightness_info.patch: + ACPI: video: Fix reversed brightness behavior on ThinkPad SL + series (bnc#450149). +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/sched-fix-__load_balance_iterator-for-cfs-with-on.patch: + fix __load_balance_iterator() for cfs with only one task + (bnc#457594 - LTC50544) +* Wed Jan 14 2009 olh@suse.de +- patches.fixes/xfs-redirty-ENOSPC.patch: Re-dirty pages on + ENOSPC when converting delayed allocations (bnc#433112 - LTC48749) +* Wed Jan 14 2009 npiggin@suse.de +- Added guarded patches: +- patches.suse/mnt-want-write-speedup.patch: fs: mnt_want_write + speedup (bnc#436953). +- patches.suse/mnt_clone_write.patch: fs: introduce + mnt_clone_write (bnc#436953). +- patches.suse/unlock_page-speedup.patch: mm: unlock_page speedup + (bnc#436953). +* Wed Jan 14 2009 gregkh@suse.de +- Update config files. +- patches.drivers/add-via-chrome9-drm-support.patch: add Via + chrome9 drm support. +* Wed Jan 14 2009 gregkh@suse.de +- patches.drivers/pata_via.c-support-vx855-and-future-chips-whose-ide-controller-use-0x0571.patch: + pata_via.c: Support VX855 and future chips whose IDE controller + use 0x0571.. +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Modify patch + after suggestions from James Bottomley (bnc#465346). +* Tue Jan 13 2009 hare@suse.de +- patches.fixes/scsi-restart-lookup-by-target: Restart + scsi_device_lookup_by_target() (bnc#465346). +* Tue Jan 13 2009 olh@suse.de +- update patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: + Allow multiqueue setting in MSI-X mode only (bnc#464351 - LTC50966) +* Tue Jan 13 2009 olh@suse.de +- patches.drivers/cxgb3i-mainline.patch: fixes bug in tag release + and sync-up cxgb3i with mainline state (bnc#464508 - LTC50816) +* Tue Jan 13 2009 gregkh@suse.de +- Update to 2.6.27.11-rc1: + - lots of minor fixes + - obsoletes: + - patches.fixes/md-bitmap-read-do-not-overflow + - patches.suse/scsi-scsi_transport_srp-shost_data.patch +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: add kernel/drivers/acpi/acpi_memhotplug as supported +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh: handle arch + symlinks like i586 -> i386 in /usr/src/linux-obj. +* Mon Jan 12 2009 gregkh@suse.de +- supported.conf: updated staging and other drivers +* Mon Jan 12 2009 kkeil@suse.de +- patches.drivers/r8169-Tx-performance-tweak-helper: r8169: + Tx performance tweak helper. +- patches.drivers/r8169-add-8168-8101-registers-description: + r8169: add 8168/8101 registers description. +- patches.drivers/r8169-add-hw-start-helpers-for-the-8168-and-the-8101: + r8169: add hw start helpers for the 8168 and the 8101. +- patches.drivers/r8169-additional-8101-and-8102-support: r8169: + additional 8101 and 8102 support. +- patches.drivers/r8169-use-pci_find_capability-for-the-PCI-E-features: + r8169: use pci_find_capability for the PCI-E features. + (bnc#448168) +* Mon Jan 12 2009 dgollub@suse.de +- scripts/tar-up_and_run_mbuild.sh: use $BUILD_DIR instead of fixed + "kernel-source" string, to stay in sync with with differet kernel + variants. +* Mon Jan 12 2009 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/source-pre.sh: + replace the /usr/src/linux-obj symlink with a directory containing + per-flavor symlinks instead. This allows us to install kernel-source / + syms and kernel-source-rt / syms-rt in parallel and still find + everything below /usr/src/linux-obj/. +- rpm/kernel-binary.spec.in: for -rt, install into + /usr/src/linux-$version-rt-obj. +- rpm/kernel-syms.spec.in: fix kernel-source requires for -rt. +* Mon Jan 12 2009 jkosina@suse.de +- patches.drivers/input-usbtouchscreen-hw-calibration.patch: + Input: usbtouchscreen - allow reporting calibrated data + (bnc#444814). +* Fri Jan 09 2009 mmarek@suse.cz +- patches.suse/file-capabilities-add-file_caps-switch.diff: + fix parsing of the file_caps commandline option (bnc#264075) +* Fri Jan 09 2009 trenn@suse.de +- patches.arch/x86_fix_llc_shared_map__cpu_llc_id_anomolies.patch: + x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + (bnc#464329). +* Fri Jan 09 2009 olh@suse.de +- patches.arch/ppc-cmm_no_kdump.patch: + Disable Collaborative Memory Manager for kdump (bnc#460552 - LTC50789) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/cgroup-disable-memory.patch: memcg: disable the + memory controller by default. +- patches.suse/add-enable_cgroup-parameter.patch: Delete. +- patches.suse/disable-cgroups.patch: Delete. +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch + fix compile errors +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/ath5k-ignore-calibration-return-value.patch: + ath5k: ignore the return value of + ath5k_hw_noise_floor_calibration (bnc#446541). +* Fri Jan 09 2009 jslaby@suse.de +- patches.fixes/cgroups-suppress-cloning-warning.patch: cgroups: + suppress bogus warning messages (bnc#460961). +* Fri Jan 09 2009 olh@suse.de +- patches.suse/radeon-monitor-jsxx-quirk.patch: Add quirk for + the graphics adapter in some JSxx (bnc#461002 - LTC50817) +* Fri Jan 09 2009 trenn@suse.de +- patches.fixes/acpi_irq_quirk_pci_irq_derive.patch: ACPI: Do not + derive IRQ from parent bridge/device via boot param/dmi list + (bnc#437211). +- patches.suse/acpi_osi_sle11_ident.patch: Provide possibility + for vendors to fix BIOS issues for SLE11 only (none). +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/blk-request-based-multipath-update: Rediff. +- patches.fixes/scsi-refactor-busy-processing: refactor + sdev/starget/shost busy checking; break out from + blk-request-based-multipath-update. +* Fri Jan 09 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.11-update: Update lpfc from 8.2.8.10 + to 8.2.8.11 (bnc#464662). +- patches.fixes/scsi-call-unprep_request-under-lock: scsi_lib: + only call scsi_unprep_request() under queue lock (bnc#464155). +- patches.fixes/scsi-fix-hang-in-starved-list-processing: Fix + hang in starved list processing (bnc#464155). +* Fri Jan 09 2009 kkeil@suse.de +- patches.drivers/bnx2-Add-PCI-ID-for-5716S: bnx2: Add PCI ID + for 5716S +- patches.drivers/bnx2-Fix-bug-in-bnx2_free_rx_mem_: bnx2: + Fix bug in bnx2_free_rx_mem() (bnc#464130) +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/disable-cgroups.patch: Disable all cgroups + (bnc#436025). +* Fri Jan 09 2009 hare@suse.de +- Backporting block layer fixes (bnc#464155): + * patches.fixes/block-add-comment-in-blk_rq_timed_out: add + comment in blk_rq_timed_out() about why next can not be 0 + * patches.fixes/block-fix-blk_start_queueing: block: Fix + blk_start_queueing() to not kick a stopped queue. + * patches.fixes/block-leave-the-request-timeout-timer-running: + block: leave the request timeout timer running even on an + empty list. + * patches.fixes/block-optimizations-in-blk_rq_timed_out_timer: + block: optimizations in blk_rq_timed_out_timer(). + * patches.fixes/block-suppress-buffer-IO-errors: block: Supress + Buffer I/O errors when SCSI REQ_QUIET flag set. + * patches.fixes/block-use-round_jiffies_up: Block: use + round_jiffies_up(). + * patches.fixes/round-jiffies-up: Add round_jiffies_up and + related routines. +* Fri Jan 09 2009 jbeulich@novell.com +- patches.xen/xen3-acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +* Fri Jan 09 2009 hare@suse.de +- patches.fixes/scsi_dh-retry-on-UNIT_ATTENTION: scsi_dh_rdac + does not retry MODE SENSE on UNIT ATTENTION (bnc#464155). +- patches.suse/scsi-check-removed-device-for-offline: Only check + for SDEV_OFFLINE and SDEV_DEL, not SDEV_CANCEL. +* Fri Jan 09 2009 jslaby@suse.cz +- patches.suse/add-enable_cgroup-parameter.patch: Add + cgroup_enable parameter (bnc#436025). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- clean up patch fuzz +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-pci-msi-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCI MSI _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aer-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe AER _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-pcie-aspm-_osc-support-capabilities-called-when-root-bridge-added.patch: + ACPI/PCI: PCIe ASPM _OSC support capabilities called when root + bridge added (bnc#438941). +- patches.drivers/acpi-pci-remove-obsolete-_osc-capability-support-functions.patch: + ACPI/PCI: remove obsolete _OSC capability support functions + (bnc#438941). +* Fri Jan 09 2009 gregkh@suse.de +- patches.drivers/acpi-pci-call-_osc-support-during-root-bridge-discovery.patch: + ACPI/PCI: call _OSC support during root bridge discovery + (bnc#438941). +- patches.drivers/acpi-pci-change-pci_osc_control_set-to-query-control-bits-first.patch: + ACPI/PCI: Change pci_osc_control_set() to query control bits + first (bnc#438941). +- patches.drivers/acpi-pci-fix-possible-race-condition-on-_osc-evaluation.patch: + ACPI/PCI: Fix possible race condition on _OSC evaluation + (bnc#438941). +- patches.drivers/acpi-pci-include-missing-acpi.h-file-in-pci-acpi.h.patch: + ACPI/PCI: include missing acpi.h file in + pci-acpi.h. (bnc#438941). +- patches.drivers/acpi-pci-pci-extended-config-_osc-support-called-when-root-bridge-added.patch: + ACPI/PCI: PCI extended config _OSC support called when root + bridge added (bnc#438941). +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/bnx2x-version-update.patch: bnx2x: Version + Update (bnc#439679). +* Thu Jan 08 2009 jjolly@suse.de +- patches.arch/s390-07-01-zfcp-port-failed-message.diff: zfcp: + Remove message for failed port (bnc#464466). +- patches.arch/s390-07-02-zfcp-unchained-fsf.diff: zfcp: Add + support for unchained FSF requests (bnc#464466). +- patches.arch/s390-07-03-topology-fix.diff: kernel: fix cpu + topology support (bnc#464466). +- patches.arch/s390-07-04-dasd-failfast.patch: dasd: Add + 'failfast' device feature. (bnc#464466,LTC#43066). +* Thu Jan 08 2009 tiwai@suse.de +- patches.drivers/alsa-caiaq-midi-oops-fix: ALSA: caiaq - Fix + Oops with MIDI. +* Thu Jan 08 2009 knikanth@suse.de +- patches.fixes/dm-avoid-put-table-dm_any_congested: dm: avoid + destroying table in dm_any_congested (bnc#457205). +- patches.fixes/dm-table-ref-count: dm table: rework reference + counting (bnc#457205). +- patches.fixes/dm-unbind-drop-ref: dm table: drop reference at + unbind (bnc#457205). +* Thu Jan 08 2009 olh@suse.de +- update kdump config, disable some unused drivers +* Thu Jan 08 2009 olh@suse.de +- refresh config files, no functional changes +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + use separate table for module alias (bnc#435215 - LTC48564) +* Thu Jan 08 2009 tiwai@suse.de + Backport fixes for HD-audio from the upstream: +- patches.drivers/alsa-hda-ad1882-id-typo-fix: ALSA: hda - + Fix typos for AD1882 codecs. +- patches.drivers/alsa-hda-ad1986a-laptop-eapd-model-back: ALSA: + hda - make laptop-eapd model back for AD1986A. +- patches.drivers/alsa-hda-hp2230s-quirk: ALSA: hda - Add quirk + for HP 2230s (bnc#461660). +- patches.drivers/alsa-hda-sigmatel-add-missing-terminators: + ALSA: hda - Add missing terminators in patch_sigmatel.c. +* Thu Jan 08 2009 bwalle@suse.de +- Update config files: Enable CONFIG_EHEA=m (and CONFIG_IBMEBUS=y) + for ppc/kdump and ppc64/kdump (bnc #459119). +* Thu Jan 08 2009 jblunck@suse.de +- Make kernel-source.changes incremental again +* Thu Jan 08 2009 olh@suse.de +- supported.conf: rename dm-leastpending-path to dm-leastpending +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ehea-modinfo.patch: + add alias entry for portN properties (bnc#435215 - LTC48564) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-abort-response.patch: + Fixup command response translation (bnc#459383 - LTC50695) +* Thu Jan 08 2009 olh@suse.de +- patches.drivers/ibmvfc-improve_sync_events.patch: + Improve async event handling (bnc#460567 - LTC50778) +* Thu Jan 08 2009 gregkh@suse.de +- patches.drivers/via-unichrome-drm-bugfixes.patch: via: Unichrome + DRM bugfixes. +* Thu Jan 08 2009 coly.li@suse.de +- Move patch from patches.suse/dlm-fix-shutdown-cleanup.patch to + patches.fixes/dlm-fix-shutdown-cleanup.patch +* Thu Jan 08 2009 coly.li@suse.de +- Fixes a regression from commit + 0f8e0d9a317406612700426fad3efab0b7bbc467, + "dlm: allow multiple lockspace creates". +* Wed Jan 07 2009 olh@suse.de +- patches.arch/ppc-pseries-cpu-migrate.patch: Update + default_server during migrate_irqs_away (bnc#460566 - LTC50723) +* Wed Jan 07 2009 jack@suse.cz +- patches.suse/mm-increase-dirty-limits.patch: Increase limits + for starting writeback of dirty data (bnc#449662). +* Wed Jan 07 2009 ghaskins@suse.de +- Update config files (part of bnc#448412). +* Wed Jan 07 2009 ghaskins@suse.de +- patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch: + configure HAVE_UNSTABLE_SCHED_CLOCK for SGI_SN systems (bnc#448412). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/lpfc-8.2.8.10-update: Emulex 8.2.8.10 driver + patches for SLE11 (bnc#460775). +* Wed Jan 07 2009 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Update Patch-mainline + header. Patch is not refreshed as it breaks kabi (FATE#304489). +* Wed Jan 07 2009 hare@suse.de +- patches.drivers/cciss-driver-panic-on-volume-delete: cciss + driver may panic if a logical volume is deleted (bnc#459553). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC to avoid deadlocks + (bnc#461747). +* Wed Jan 07 2009 hare@suse.de +- patches.fixes/fc_transport-devloss-callback-restore: FC devloss + callback not called when devloss timer fires (bnc#463289). +* Wed Jan 07 2009 hare@suse.de +- patches.suse/dm-mpath-leastpending-path-update: Update + least-pending-IO dynamic load balancer (bnc#444199). +- patches.suse/dm-mpath-queue-length-load-balancing: Rediff. +- patches.suse/dm-mpath-service-time-load-balancing: Rediff. +- patches.suse/dm-mpath-tracking-nr-bytes: Rediff. +- patches.suse/dm-mpath-leastpending-path: Delete. +* Tue Jan 06 2009 jeffm@suse.de +- patches.fixes/uv-remove-erroneous-BAU-init: UV: remove erroneous + BAU initialization (bnc#463313). +* Tue Jan 06 2009 jjolly@suse.de +- patches.arch/s390-06-01-qeth-ext-src-mac-addr.patch: qeth: + exploit source MAC address for inbound layer3 packets + (bnc#458339). +- patches.arch/s390-06-02-qeth-layercrash.patch: qeth: avoid + crash in case of layer mismatch for VSWITCH (bnc#458339). +- patches.arch/s390-06-03-dasd_sim_sense_condition.patch: Fix + unsolicited SIM sense condition. (bnc#458339). +- patches.arch/s390-06-04-qdio_ssqd_memcpy.patch: qdio: fix + broken memcpy (bnc#458339). +- patches.arch/s390-06-05-qdio_s390dbf.patch: qdio: rework + s390dbf usage (bnc#458339). +- patches.arch/s390-06-06-qdio_inbound_ack.patch: qdio: rework + inbound buffer acknowledgement (bnc#458339). +- patches.arch/s390-06-07-cio-attach_detach.patch: cio: Crashes + when repeatetly attaching/detaching devices. (bnc#458339). +* Tue Jan 06 2009 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: Jan's comments for + contiguous kmap fix (bnc#449812). +* Tue Jan 06 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: update. +* Mon Jan 05 2009 mmarek@suse.cz +- patches.suse/modpost-filter-out-built-in-depends: modpost: + filter out "built-in" depends (bnc#450085). +- patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch: + refresh. +* Mon Jan 05 2009 npiggin@suse.de +- Fix ps3 config. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/mm-lockless-pagecache-barrier.patch: mm lockless + pagecache barrier fix. +* Mon Jan 05 2009 npiggin@suse.de +- patches.fixes/fs-symlink-write_begin-allocation-context-fix.patch: + fs symlink write_begin allocation context fix. +* Mon Jan 05 2009 npiggin@suse.de +- Update config files. +* Mon Jan 05 2009 npiggin@suse.de +- patches.suse/cgroup-freezer.patch: cgroup freezer update (bnc#417294, + fate#304191, fate#201036). +* Wed Dec 31 2008 npiggin@suse.de +- patches.fixes/s390-lru_add_drain_all.patch: mm: remove UP + version of lru_add_drain_all() (bnc#458380). +* Wed Dec 31 2008 npiggin@suse.de +- patches.arch/x86-fix-kmap-contig.patch: x86: contiguous kmap + fix (bnc#449812). +* Tue Dec 30 2008 jeffm@suse.de +- patches.arch/thinkpad_acpi-hotkey-notify-fix: thinkpad_acpi: + Fix oops with incompatible backlight interface. +* Mon Dec 22 2008 olh@suse.de +- update patches.arch/ppc-memoryless-nodes.patch: + fix bootmem reservation on uninitialized node (bunc#457029 - LTC50483) +* Mon Dec 22 2008 olh@suse.de +- patches.fixes/scsi-ibmvscsi-can_queue_fix.patch: Make + max_requests module parameter more accurate (bnc#458499 - LTC50637) +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-dv7-quirk: ALSA: hda - Add quirk + for another HP dv7 (bnc#461108). +* Sat Dec 20 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: More fixes (bnc#447624). +* Fri Dec 19 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Print more info. +* Fri Dec 19 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-capture-no-44khz: ALSA: disable + 44.1kHz capture on CA0106 (bnc#447624). +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-92hd73x-desktop-fixes: ALSA: Fix + plaback problems on Intel desktops with IDT codecs. +* Fri Dec 19 2008 jbeulich@novell.com +- patches.arch/x86_sgi-uv-scir.patch, + patches.suse/e1000e_ioremap_sanity_check, + patches.suse/perfmon2-remove_get_base_syscall_attr.patch, + patches.suse/perfmon2.patch, + patches.suse/silent-stack-overflow-2.patch: eliminate build warnings. +* Fri Dec 19 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rt2870-wireless-driver.patch: + Staging: add rt2870 wireless driver. +* Fri Dec 19 2008 nfbrown@suse.de +- patches.fixes/md-bitmap-read-do-not-overflow: md: Don't read + past end of bitmap when reading bitmap. (bnc#459557). +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Fixed ordering. +* Thu Dec 18 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: Delete. +* Thu Dec 18 2008 gregkh@suse.de +- Updated to final 2.6.27.10 release +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: + Use apic=bigsmp on specific xseries machines (bnc#440497). +* Thu Dec 18 2008 trenn@suse.de +- patches.arch/x86_restrict_pci_early_quirks_to_root_bridges.patch: + Only scan the root bus in early PCI quirks. (bnc#57886). +* Thu Dec 18 2008 jbeulich@novell.com +- patches.xen/746-pirq-status-page.patch: Merge in c/s 751. +- patches.xen/761-highpte.patch: blktap, gntdev: fix highpte handling. +- patches.xen/762-xencons-hvc.patch: add hvc compatibility mode to xencons. +- patches.xen/xen3-patch-2.6.27.7-8: Linux 2.6.27.8. +- patches.xen/xen3-patch-2.6.27.8-9: Linux 2.6.27.9. +- patches.xen/xen-x86-exports: export a few more symbols + (bnc#458222). +- patches.xen/xen3-perfmon2_remove_syscalls.patch: Rename to ... +- patches.xen/xen3-perfmon2-remove_syscalls.patch: ... this. +* Thu Dec 18 2008 nfbrown@suse.de +- patches.fixes/md-disable-recovery-on-faulty-degraded-array: + Disable recovery when degraded RAID1 array appears to be + faulty. (bnc#447835). +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/symsets.pl: fix uninitialized variable +* Wed Dec 17 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - add genksyms reference files so that genksyms can explain why + did checksums change +* Wed Dec 17 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Delete. It + oopses badly and is not needed for the HP2133 hardware, as + it has switched to Intel chipsets. +* Wed Dec 17 2008 gregkh@suse.de +- Upate to 2.6.27.10-rc1, fixing lots of problems. + - obsoletes: + - patches.drivers/libata-update-ST-FLUSH-blacklist + - patches.fixes/iwlwifi_fix_oops.patch + - patches.fixes/v4l-dvb-avoid-writing-outside-array +* Wed Dec 17 2008 jeffm@suse.de +- patches.suse/reiserfs-barrier-default: Make reiserfs default + to barrier=flush. +* Tue Dec 16 2008 mmarek@suse.cz +- addded symtypes-* files to the RC1 reference kabi +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/ext3-mark-super-uptodate: ext3: always mark + super uptodate before dirty (bnc#457043). +* Tue Dec 16 2008 hare@suse.de +- patches.fixes/blk-dont-invoke-request_fn-on-stopped-queue: + block: only call ->request_fn when the queue is not stopped + (bnc#457041). +- patches.fixes/blk-get-extra-reference-before-unmap: block: + hold extra reference to bio in blk_rq_map_user_iov(). +- patches.fixes/blk-move-unplug_work-init: block: move + q->unplug_work initialization. +- patches.fixes/blk-set-segment-boundary-mask: block: fix setting + of max_segment_size and seg_boundary mask. +- patches.fixes/dm-mpath-send-activate-to-every-path: Handle + multiple paths in a path group properly during pg_init. +- patches.fixes/scsi_dh-add-lsi-ids-to-rdac: Adding LSI vendor + and product IDs to RDAC device handler. +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037,bnc#458393). +- patches.suse/scsi-check-removed-device-for-offline: Check if + device is removed in scsi_device_online() (bnc#456747). +* Tue Dec 16 2008 hare@suse.de +- Enable 3270 console (bnc#457039) +* Tue Dec 16 2008 rjw@suse.de +- Update config files. +- patches.suse/mm-do-not-disable-memory-hotplug-when-hibernation-is-enabled.patch: + mm: Do not disable memory hotplug when hibernation is enabled + (bnc#438914). +* Tue Dec 16 2008 jeffm@suse.de +- patches.fixes/iwlwifi_fix_oops.patch: iwlwifi: clean key table + in iwl_clear_stations_table function (bnc#457062). +* Mon Dec 15 2008 jjolly@suse.de +- patches.drivers/cxgb3i_ddp.patch: cxgb3i - added pdu size + check and fixed ddp page setup (bnc#449519). +* Mon Dec 15 2008 hare@suse.de +- patches.drivers/qla4xxx-5.01.00-k8_sles11-04-update: qla4xxx + driver SLES 11 Beta6 update (bnc#458186). +* Mon Dec 15 2008 oneukum@suse.de +- patches.suse/usb_correct_config_ti_04b3_4543.diff: fix + ti_usb_3410_5052 driver for device 04b3:4543 (bnc#395775). +* Sun Dec 14 2008 gregkh@suse.de +- Update to 2.6.27.9 + - obsoleted: + - patches.fixes/applicom-fix-unchecked-ioctl-range + - patches.fixes/watchdog-ib700wdt-buffer-underflow +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-ensure-nonzero-transaction: reiserfs: + ensure nonzero transaction (bnc#447406). +* Fri Dec 12 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: Update to print accurate refcount. +* Fri Dec 12 2008 jblunck@suse.de +- .gitignore: Ignore backup files. +* Fri Dec 12 2008 hare@suse.de +- patches.fixes/scsi-check-host-lookup-failure: Correct + scsi_host_lookup return value (bnc#456532). +- patches.suse/dm-mpath-accept-failed-paths: Accept failed paths + for multipath maps (bnc#458037). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: hso: rfkill type should + be WWAN (bnc#458625). +* Fri Dec 12 2008 fseidel@suse.de +- patches.fixes/hso_killswitch.patch: + fix hso rfkillswitch type to WWAN (bnc#458625) +* Fri Dec 12 2008 mmarek@suse.cz +- import SLE11 RC1 reference kabi +* Fri Dec 12 2008 gregkh@suse.de +- refresh patches to apply cleanly due to 2.6.27.9-rc addition. +* Fri Dec 12 2008 gregkh@suse.de +- remove patches that were obsoleted by 2.6.27.9-rc2 + - patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch + - patches.arch/x86-hpet-use-WARN_ON_ONCE + - patches.drivers/alsa-hda-acer-quirk + - patches.drivers/alsa-hda-alc888-medion-add + - patches.drivers/alsa-hda-dell-studio-15-quirk + - patches.drivers/alsa-hda-dell-studio-1535-quirk + - patches.drivers/alsa-hda-hp-6730s-quirk + - patches.drivers/alsa-hda-hp-elitebook-8530p-quirk + - patches.drivers/alsa-hda-hp-mobile-fix + - patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch + - patches.drivers/cell_edac.patch + - patches.fixes/acpi-set-SCI_EN-on-MacBook.patch + - patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch + - patches.fixes/block-enforce-minimum-SG_IO-timeout + - patches.fixes/cxgb3-remove-duplicate-tests-in-lro + - patches.fixes/cxgb3_fix_race_in_EEH + - patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch + - patches.fixes/pci_aspm_check_endless_loop_safe.patch + - patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch + - patches.fixes/x86-arch_add_memory-remove-debug + - patches.fixes/x86-memory-hotplug-off-by-one +* Fri Dec 12 2008 gregkh@suse.de +- update to 2.6.27.9-rc2: + - lots of bugfixes + - some security updates +* Fri Dec 12 2008 gregkh@suse.de +- intermediate commit as part of adding 2.6.27.9-rc1 to the tree. +* Thu Dec 11 2008 hare@suse.de +- Compile in zfcpdump module for S/390 (bnc#446367). +* Thu Dec 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: one more fix to make kabi checks work +* Thu Dec 11 2008 teheo@suse.de +- patches.drivers/libata-update-ST-FLUSH-blacklist: libata: + fix Seagate NCQ+FLUSH blacklist (bnc#458192). +* Thu Dec 11 2008 nfbrown@suse.de +- patches.suse/SoN-fix-sync: Cope with racy nature of sync_page + in swap_sync_page (441793). +* Wed Dec 10 2008 jjolly@suse.de +- patches.arch/s390-05-09-cleanup-of-portopen-requests.patch: + zfcp: fix erp timeout cleanup for port open requests + (bnc#450096). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/watchdog-ib700wdt-buffer-underflow: ib700wdt.c - + fix buffer_underflow bug (bnc#457898). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/applicom-fix-unchecked-ioctl-range: applicom: Fix + an unchecked user ioctl range and an error return (bnc#457897). +* Wed Dec 10 2008 jeffm@suse.de +- patches.fixes/block-enforce-minimum-SG_IO-timeout: Enforce a + minimum SG_IO timeout (bnc#457896). +* Wed Dec 10 2008 mmarek@suse.cz +- rpm/find-provides: don't fail if a subpackage doesn't contain + any modules (such as the -man subpackage on s390x) +* Wed Dec 10 2008 tiwai@suse.de +- patches.drivers/alsa-hda-hp-6730b-quirk: ALSA: hda - Add quirk + for HP6730B laptop (bnc#457909). +- patches.drivers/alsa-hda-hp-6730s-quirk: ALSA: hda - Add + another HP model (6730s) for AD1884A. +- patches.drivers/alsa-hda-hp-elitebook-8530p-quirk: ALSA: hda - + Make the HP EliteBook 8530p use AD1884A model laptop. +* Wed Dec 10 2008 olh@suse.de +- patches.drivers/ibmvfc-add_sync.patch: + Fix errors due to inconsistent command data (bnc#456654 - LTC50451) +- patches.drivers/ibmvfc-host_init_delay.patch: + Delay NPIV login retry and add retries (bnc#456654 - LTC50451) +* Wed Dec 10 2008 teheo@suse.de +- patches.drivers/libata-pata_hpt366-fix-cable-detection: + pata_hpt366: fix cable detection, (bnc#362159). +- patches.drivers/libata-pata_hpt366-fix-clock-detection: + pata_hpt366: fix clock detection (bnc#362159). +- patches.drivers/libata-pata_hpt366-no-ATAPI-DMA: pata_hpt366: + no ATAPI DMA (bnc#362159). +- patches.drivers/libata-pata_hpt366-reimplement-mode-programming: + pata_hpt366: reimplement mode programming (bnc#362159). +* Tue Dec 09 2008 agruen@suse.de +- supported.conf: Mark xfs_dmapi as supported (bnc#457668). +* Tue Dec 09 2008 jeffm@suse.de +- patches.fixes/x86-arch_add_memory-remove-debug: x86: remove + debug code from arch_add_memory() (bnc#457526). +- patches.fixes/x86-memory-hotplug-off-by-one: x86, memory + hotplug: remove wrong -1 in calling init_memory_mapping() + (bnc#457526). +* Tue Dec 09 2008 agruen@suse.de +- rpm/{kernel-module-subpackage,macros.kernel-source}: Remove + a leftover hardcoded dependency on the kernel-source package so + that KMPs can alternatively be built against a kernel other + than (kernel-source + kernel-syms), such as (kernel-source-rt + + kernel-syms-rt). +* Tue Dec 09 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop_safe.patch: PCIe: + ASPM: Break out of endless loop waiting for PCI config bits + to switch (bnc#449799). +* Tue Dec 09 2008 mmarek@suse.cz +- rpm/symsets.pl: + - add --required-modules option to tell which modules this + subpackage requires via dependencies. This is needed to + preserve symsets when modules move from one subpackage to + another. + - add POD help and --help option. +- rpm/kernel-binary.spec.in: make use of --required-modules +* Tue Dec 09 2008 nfbrown@suse.de +- patches.fixes/xfs-barrier-fix.patch: Fix propagation of + EOPNOTSUPP when barriers are not supported. (bnc#438608). +* Tue Dec 09 2008 rjw@suse.de +- patches.fixes/tg3-fix-default-wol.patch: net (tg3): Fix failure + to enable WoL by default when possible (bnc#447371). +* Mon Dec 08 2008 olh@suse.de +- patches.arch/ppc-valid-hugepage-size-hugetlb_get_unmapped_area.patch: + Check for valid hugepage size in hugetlb_get_unmapped_area + (bnc#456433 - LTC50170). +* Mon Dec 08 2008 trenn@suse.de +- patches.fixes/pci_aspm_check_endless_loop.patch: Delete. +* Mon Dec 08 2008 rw@suse.de +- patches.drivers/sgi-xp-no-uv: + SGI SN: Eliminate dependency of the XP/XPC drivers on GRU. (bnc#442442) +* Mon Dec 08 2008 rw@suse.de +- Update config files for ia64: + Disable PERMIT_BSP_REMOVE. (bnc#386714) +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/find-provides, rpm/kernel-binary.spec.in: figure out what + subpackage is being processed in find-provides and just print + the symsets computed in the spec. +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: use flavor-rpmarch to match boards on powerpc +* Mon Dec 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: skip empty KMPs with a warning in + the kmp %%postun +* Mon Dec 08 2008 jjohansen@suse.de +- Update config files. +- patches.apparmor/fix-complain.diff: fix enforcement of deny + rules in complain mode (bnc#426159). +- patches.apparmor/fix-security-param.diff: fix recognition of + security= boot parameter (bnc#442668). +- patches.apparmor/fork-tracking.diff: fix log messages to enable + tools profile learning (bnc#447564). +* Mon Dec 08 2008 olh@suse.de +- rpm/post.sh: update board detection to use rpmarch instead flavor +* Mon Dec 08 2008 hare@suse.de +- patches.fixes/block-integrity-update: Block integrity update + (FATE#304345). +- patches.suse/dm-block-integrity: Block integrity support for + DM and MD (FATE#304345). +- patches.suse/dm-mpath-add-start-io: dm-mpath: add a path + selector interface (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-queue-length-load-balancing: dm-mpath: add + queue-length dynamic load balancer (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-service-time-load-balancing: + dm-mpath: add service-time oriented dynamic load balancer + (FATE#303862,FATE#302108). +- patches.suse/dm-mpath-tracking-nr-bytes: dm-mpath: + interface change for service-time dynamic load balancer + (FATE#303862,FATE#302108). +- supported.conf: Update to correctly reference dynamic load + balancer modules (bnc#444199) +* Mon Dec 08 2008 tonyj@suse.de +- patches.suse/perfmon2-add_ioctl_interface.patch: switch to + ioctl interface for perfmon2. +- patches.suse/perfmon2-fix_disabled.patch: fix initializion of + perfmon disabled. +- patches.suse/perfmon2-remove_get_base_syscall_attr.patch: + remove perfmon syscall_base attribyute. +- patches.suse/perfmon2-remove_syscalls.patch: drop additional + perfmon2 syscalls. +- patches.xen/xen3-perfmon2_remove_syscalls.patch: drop additional + perfmon2 syscalls. +* Sat Dec 06 2008 trenn@suse.de +- patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch: + ACPI: EC: Don't degrade to poll mode at storm + automatically. (bnc#446142). +- patches.fixes/pci_aspm_check_endless_loop.patch: PCIE Break + out of endless loop waiting for PCI config bits to switch + (bnc#449799). +* Sat Dec 06 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Sat Dec 06 2008 gregkh@suse.de +- Update to final 2.6.27.8 release + - contains 2 changes from 2.6.27.8-rc1 +* Fri Dec 05 2008 jbeulich@novell.com +- patches.xen/xen-configurable-guest-devices: fix a typo. +* Fri Dec 05 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + move crq_queue_create at the end of initialization (bnc#455929). +* Fri Dec 05 2008 hare@suse.de +- patches.drivers/open-fcoe-fnic-patches: Open-FCoE bugfixes + for fnic. +- patches.drivers/open-fcoe-rc1-update: Update open-FCoE with + latest patches from Intel (bnc#438954). +* Fri Dec 05 2008 jbeulich@novell.com +- Update Xen x86-64 config (2k guest devices, 1k outstanding transmits + in netback). +* Fri Dec 05 2008 hare@suse.de +- patches.arch/s390-zfcp-synchronize-scsi-register: No udev + events for zfcp online / offline (bnc#443667). +- patches.fixes/scsi-remove-scmd-timeout: Fix block timeout + residue problems (bnc#447249,bnc#441335). +- patches.fixes/scsi-eh_stu-timeout: Delete obsolet patch. +* Fri Dec 05 2008 bphilips@suse.de +- patches.fixes/saa7134-fix-resource-map-sanity-check-conflict.patch: + saa7134: fix resource map sanity check conflict (bnc#446733). +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-rtl8187se-driver.patch: Staging: + add rtl8187se driver. Needed for MSI Wind and other netbooks. +* Fri Dec 05 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-serverengines-benet-10gb-ethernet-driver.patch: + Staging: Add ServerEngines benet 10Gb ethernet driver. +* Fri Dec 05 2008 gregkh@suse.de +- update the wlan-ng driver to the latest upstream version, making + it much more useful (it actually works now...) +* Fri Dec 05 2008 nfbrown@suse.de +- patches.fixes/sunrpc-module-refcount-fix: Add a reference to + sunrpc in svc_addsock (443379). This avoid a bug where + refcount on sunrpc can go zero or negative. +* Thu Dec 04 2008 jeffm@suse.de +- patches.fixes/reiserfs-debug-1036: reiserfs: print more + information when an empty journal list is encountered + (bnc#447406 bnc#399966). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/atm-duplicate-listen-on-socket-corrupts-the-vcc-table.patch: + ATM: duplicate listen() on socket corrupts the vcc table + (CVE-2008-5079). +* Thu Dec 04 2008 jack@suse.cz +- Update config files. +* Thu Dec 04 2008 jack@suse.cz + XFS update on request from SGI: +- patches.apparmor/vfs-notify_change.diff: Add a vfsmount + parameter to notify_change(). (refreshed) +- patches.suse/xfs-account-for-allocated-blocks-when-expanding-directories: + Account for allocated blocks when expanding directories + (bnc#450658). +- patches.suse/xfs-check-for-valid-transaction-headers-in-recovery: + XFS: Check for valid transaction headers in recovery + (bnc#450658). +- patches.suse/xfs-dmapi-enable: VFS changes to support DMAPI + (bnc#450658). +- patches.suse/xfs-dmapi-src: DMAPI Source (bnc#450658). +- patches.suse/xfs-dmapi-xfs-enable: DMAPI support for xfs + (bnc#450658). +- patches.suse/xfs-handle-memory-allocation-failures-during-log-initialisation: + handle memory allocation failures during log initialisation + (bnc#450658). +- patches.suse/xfs-nfsd-dmapi-aware: Make NFSD DMAPI aware + (74107, 173874, bnc#450658). +- patches.suse/xfs-wait-for-all-IO-on-truncate-to-zero: Wait + for all I/O on truncate to zero file size (bnc#450658). +- patches.suse/xfs-dmapi-2.6.27: Delete. +- patches.suse/xfs-dmapi-xfs-2.6.27: Delete. +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-mpic-dont-reset-affinity-for-secondary-MPIC-on-boot.patch: + Don't reset affinity for secondary MPIC on boot (bnc#456408 - LTC50397). +* Thu Dec 04 2008 jjolly@suse.de +- Update config files. +- patches.arch/s390-05-04-fix_rport_status_check.patch: zfcp: + fix remote port status check (bnc#450096). +- patches.arch/s390-05-05-stp-etr-stop-machine.patch: stp/etr: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-06-stp-etr-mutex.patch: stp/etr: serialize + work. (bnc#450096). +- patches.arch/s390-05-07-generic-ipi.patch: kernel: + smp_call_function races. (bnc#450096). +- patches.arch/s390-05-08-topology.patch: kernel: disable cpu + topology support by default (bnc#450096,LTC#50392). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-cell-gdb-watchpoints.patch: + Fix GDB watchpoints on Cell (bnc#456405 - LTC50396). +* Thu Dec 04 2008 olh@suse.de +- patches.arch/ppc-syscall-xer.so.1.patch: Fix system calls on + Cell entered with XER.SO=1 (bnc#456406 - LTC50395). +* Thu Dec 04 2008 hare@suse.de +- patches.suse/genhd-disk-ro-uevents: Send uevents for + write_protect changes (bnc#440959). +* Thu Dec 04 2008 mmarek@suse.cz +- supported.conf: mark kernel/net/ipv4/ipvs/ip_vs/* and + kernel/net/ipv4/netfilter/ipt_CLUSTERIP as unsupported, + a supported variant will be provided in a separate KMP + (bnc#455959) +* Thu Dec 04 2008 schwab@suse.de +- Set CONFIG_IA64_CPE_MIGRATE=m. +* Thu Dec 04 2008 jbeulich@novell.com +- supported.conf: Mark pciback as support, sfc_resource, sfc_netback, + and sfc_netutil as externally supported, add sfc_netfront, and mark + xenscsi and xen-scsibk as unsupported. +* Thu Dec 04 2008 mszeredi@suse.de +- patches.suse/SoN-fix-uninitialized-variable.patch: Fix use of + uninitialized variable in cache_grow() (bnc#444597). +* Thu Dec 04 2008 hare@suse.de +- patches.fixes/scsi-eh_stu-timeout: make scsi_eh_try_stu use + block timeout (bnc#447249,bnc#441335). +* Thu Dec 04 2008 gregkh@suse.de +- patches.fixes/jbd2-create-proc-entry-fix.patch: Delete. It's not needed + anymore now that 2.6.27.8-rc1 has a similar fix. +* Thu Dec 04 2008 gregkh@suse.de +- Update to 2.6.27.8-rc1: + - lots of bugfixes + - some security fixes as well. + - obsoletes lots of existing patches: + - patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch + - patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + - patches.drivers/libata-fix-ata_tf_read_block-overflow + - patches.drivers/libata-fix-ata_tf_to_lba48-overflow + - patches.drivers/libata-seagate-firmware-bug + - patches.drivers/parport-serial-array-overflow-fix + - patches.fixes/af_unix-soft-lockup-fix.patch + - patches.fixes/cifs-add-cifs_sock_list + - patches.fixes/cifs-cleanup-cifs_mount + - patches.fixes/cifs-cleanup-proto-handling + - patches.fixes/cifs-disable-sess-sharing + - patches.fixes/cifs-fix-build-breakage + - patches.fixes/cifs-fix-data-corruption + - patches.fixes/cifs-fix-dead-tcon-check + - patches.fixes/cifs-fix-oops-on-failed-mount + - patches.fixes/cifs-fix-reconnection-flags + - patches.fixes/cifs-fix-smb-send2 + - patches.fixes/cifs-fix-writepages + - patches.fixes/cifs-reinstate-sess-sharing-sans-races + - patches.fixes/cifs-reinstate-treecon-sharing + - patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors + - patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully + - patches.fixes/ext4_fix_whitespace_checkpatch_issues + - patches.fixes/ext4_update-flex-bg-counters-when-resizing + - patches.fixes/fix-inotify-watch-removal-umount-races + - patches.fixes/hpwdt-execute-page.diff + - patches.fixes/hpwdt-kdump.diff + - patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch + - patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch +* Wed Dec 03 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.19: Fix a kernel warning during shutdown. +- patches.xen/xen3-patch-2.6.27, + patches.xen/xen-netback-notify-multi, + patches.xen/xen-virq-per-cpu-irq: Refresh. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: change + init order to fill in shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- patches.suse/scsi-netlink-ml: Use GFP_ATOMIC for + skb allocation. +* Wed Dec 03 2008 olh@suse.de +- patches.suse/scsi-scsi_transport_srp-shost_data.patch: + add debug for Scsi_Host->shost_data (bnc#455929). +* Wed Dec 03 2008 hare@suse.de +- supported.conf: mark dm-leastpending-path as supported + (bnc#444199) +* Wed Dec 03 2008 teheo@suse.de + Patch updated to remove strcmp() on NULL strings. +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Wed Dec 03 2008 jbeulich@novell.com +- Update Xen patches to c/s 728 (plus several indivual ones) +- patches.xen/735-balloon-exit.patch: remove sysfs files during balloon + module exit. +- patches.xen/737-kexec-free.patch: kexec: Don't pass + limit_pages_to_max_mfn() regions to xen_destroy_contiguous_region(). +- patches.xen/740-blkback-resource-leak.patch: blkback, blktap: Fix + potential resource leak. +- patches.xen/746-pirq-status-page.patch: use shared page indicating + the need for an EOI notification +- patches.xen/747-x86-undo-mfn-limit.patch: revert the effect of + xen_limit_pages_to_max_mfn() +- patches.xen/748-x86-ioapic-cleanup.patch: cleanup IO-APIC code +- patches.xen/panic-on-io-nmi-xen.diff: Rename to ... +- patches.xen/xen3-panic-on-io-nmi.diff: ... this. +- patches.xen/uv-sysfs-no-xen.diff: Replace by ... +- patches.xen/xen3-uv_setup_irq.diff: ... this. +- patches.xen/xen3-x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +- patches.xen/xen-fb-bad-irq: Delete. +* Wed Dec 03 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.9-update: Update Emulex lpfc driver + to 8.2.8.9 (bnc#420767). +* Wed Dec 03 2008 knikanth@suse.de +- patches.suse/cfq-ioc-race: Exiting queue and task might race + to free cic (bnc#444346). +* Wed Dec 03 2008 sjayaraman@suse.de +- patches.fixes/cifs-reinstate-sess-sharing-sans-races: Adjust as it + didn't apply cleanly. +* Wed Dec 03 2008 sjayaraman@suse.de +- Fix data corruption issues (411655). + patches.fixes/cifs-fix-data-corruption + patches.fixes/cifs-fix-smb-send2 +- Fix multiple oopses, memory corruption due to mount/umount races + (https://bugzilla.samba.org/show_bug.cgi?id=5720). + patches.fixes/cifs-add-cifs_sock_list + patches.fixes/cifs-cleanup-cifs_mount + patches.fixes/cifs-cleanup-proto-handling + patches.fixes/cifs-disable-sess-sharing + patches.fixes/cifs-fix-build-breakage + patches.fixes/cifs-fix-dead-tcon-check + patches.fixes/cifs-fix-oops-on-failed-mount + patches.fixes/cifs-fix-reconnection-flags + patches.fixes/cifs-fix-writepages + patches.fixes/cifs-reinstate-sess-sharing-sans-races + patches.fixes/cifs-reinstate-treecon-sharing +* Wed Dec 03 2008 jeffm@suse.de +- scripts/git-create-branch: Helper script to create a new + branch. +* Tue Dec 02 2008 mmarek@suse.cz +- rpm/get_release_number.sh.in, scripts/tar-up.sh: append first + eight digits of the commit id to the release string. This makes + it easier to match rpm release numbers with commits. +* Tue Dec 02 2008 mszeredi@suse.de +- patches.fixes/af_unix-soft-lockup-fix.patch: net: Fix soft + lockups/OOM issues w/ unix garbage collector (bnc#449739 + CVE-2008-5300). +* Tue Dec 02 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01.02.11.0-k9-update: qla2xxx: + additional fixes/updates for SLES11 (bnc#450197). +- patches.fixes/scsi-fixup-failfast-definitions: fc_transport: + fix old bug on bitflag definitions (bnc#447814). +* Tue Dec 02 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff +- patches.suse/novfs-merge-changes.diff: Modified to revert + some changes in novfs_set_map_drive() +- patches.suse/novfs-clear-mappeddrives.patch: Unlink mapped + drives on exit (bnc#449451). +* Tue Dec 02 2008 mmarek@suse.cz +- supported.conf: mark ocfs2 as unsupported, a supported variant + will be provided in a separate KMP (bnc#449824) +* Tue Dec 02 2008 olh@suse.de +- patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch: + update error message (bnc#448301 - LTC50134) +* Tue Dec 02 2008 hare@suse.de +- Update config files for S/390: Disable FCoE and sync + default and s390. +- supported.conf: Mark KVM as supported. +* Tue Dec 02 2008 jjolly@suse.de +- ...and added the patches to the series.conf (bnc#450096) +* Tue Dec 02 2008 jjolly@suse.de +- patches.arch/s390-05-01-zfcp-message-linebreak.patch: zfcp: + Wrong placement of linebreak in message (bnc#450096). +- patches.arch/s390-05-02-zfcp-invalid-non-null-return.patch: + zfcp: invalid return value on failing fsf_req creation + (bnc#450096). +- patches.arch/s390-05-03-zfcp-wka-port.patch: zfcp: Fix opening + of wka ports (bnc#450096). +* Mon Dec 01 2008 kkeil@suse.de +- patches.drivers/cxgb3-Add-1G-fiber-support: cxgb3: Add 1G + fiber support. +- patches.drivers/cxgb3-Allocate-multiqueues-at-init-time: cxgb3: + Allocate multiqueues at init time. +- patches.drivers/cxgb3-More-flexible-support-for-PHY-interrupts: + cxgb3: More flexible support for PHY interrupts.. +- patches.drivers/cxgb3-Support-for-Aeluros-2005-PHY: cxgb3: + Support for Aeluros 2005 PHY. +- patches.drivers/cxgb3-allow-for-PHY-reset-status: cxgb3: + allow for PHY reset status. +- patches.drivers/cxgb3-commnonize-LASI-phy-code: cxgb3: + commnonize LASI phy code. +- patches.drivers/cxgb3-eeprom-read-fixes.patch: + cxgb3 - eeprom read fixes. +- patches.drivers/cxgb3-enable-lro-through-ethtool: cxgb3 - + enable lro control through ethtool. +- patches.drivers/cxgb3-simplify-port-type-struct-and-usage: + cxgb3: simplify port type struct and usage. +- patches.drivers/cxgb3-update-driver-version: cxgb3: update + driver version. (bnc#446739) +* Mon Dec 01 2008 mmarek@suse.cz +- rpm/macros.kernel-source: one more fix to the flavor selection + code (for some reason %%* contained a newline) +* Mon Dec 01 2008 trenn@suse.de +- patches.arch/acpi_x2APIC_madt_enhancements.patch: ACPICA: + x2APIC support: changes for MADT and SRAT ACPI tables (fate + 303948 and fate 303984). +- patches.fixes/acpi_check_for_invalid_handle.patch: ACPICA: + Add check for invalid handle in acpi_get_object_info + (http://www.acpica.org/bugzilla/show_bug.cgi?id=474). +- patches.fixes/acpi_dereference_object_if_possible.patch: + ACPICA: Add function to dereference returned reference objects + (http://bugzilla.kernel.org/show_bug.cgi?id=11105). +- patches.fixes/acpi_do_not_load_acpi_cpufreq_acpioff.patch: + ACPI: don't load acpi_cpufreq if acpi=off (no reference). +* Mon Dec 01 2008 trenn@suse.de +- patches.fixes/acpi_copy_tables_fix_suspend.patch: ACPICA: + Copy dynamically loaded tables to local buffer (bnc#410726). +* Sat Nov 29 2008 nfbrown@suse.de +- patches.fixes/SUNRPC-Fix-autobind-on-cloned-rpc-clients.patch: + SUNRPC: Fix autobind on cloned rpc clients. + Importantly, this removes a 'BUG_ON' that fires. (450083). +* Sat Nov 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-borked-tecra-m4-broken-suspend: + ata_piix: add borked Tecra M4 to broken suspend list + (bnc#398270). +* Sat Nov 29 2008 bwalle@suse.de +- UV updates from SGI (bnc#442455, #442455). + o patches.fixes/ia64_uv_partition_id.diff: + Add partition id, coherence id, and region size to UV + o patches.fixes/ia64_uv_watchlist.diff: + Add UV watchlist suppor + o patches.fixes/null_irq_desc_name.diff: + genirq: NULL struct irq_desc's member 'name' in + dynamic_irq_cleanup() + o patches.fixes/uv-bios_call_memprotect.diff: + Add UV bios call to change memory protections + o patches.fixes/uv-bios_call_partition.diff: + x86: Add UV partition call + o patches.fixes/uv-bios_call_reserve_page.diff: + Add UV bios call to get the address of the reserved page + o patches.fixes/uv-bios_call_watchlist.diff: + Add UV bios calls to allocate and free watchlists + o patches.fixes/uv-bios_common.diff: + x86: Add UV bios call infrastructure + o patches.fixes/uv-efi_bios.diff: + x86: Add UV EFI table entry + o patches.fixes/uv-sn_region_size.diff: + Use consistent names for region size and conherence id on x86 + and ia64 + o patches.fixes/uv-sysfs.diff: + x86: Add UV sysfs entries + o patches.fixes/uv-xp-change_memprotect.diff: + Define xp_expand_memprotect() and xp_restrict_memprotect() + o patches.fixes/uv-xpc-get_sn_info.diff: + Define xp_partition_id and xp_region_size + o patches.fixes/uv-xpc_create_gru_mq_uv.diff: + Add the code to create the activate and notify gru message + queues + o patches.fixes/uv-xpc_get_part_rsvd_page.diff: + Add support for getting the address of a partition's reserved + page + o patches.fixes/uv_setup_irq.diff: + x86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3 +- Refresh Xen patches + o patches.xen/xen3-auto-arch-x86.diff + o patches.xen/xen3-patch-2.6.19 +- patches.xen/xen-x86-no-lapic: Add uv_irq.o +- patches.xen/uv-sysfs-no-xen.diff: + Don't build UV sysfs support on Xen. +* Sat Nov 29 2008 trenn@suse.de +- patches.fixes/x86_cpufreq_powernow-k8_handle_invalid_state_gracefully.patch: + powernow-k8: ignore out-of-range PstateStatus value (no + bug avail). +* Fri Nov 28 2008 sassmann@suse.de +- Update config files. + activate ALTIVEC in ps3 config +* Fri Nov 28 2008 hare@suse.de +- patches.drivers/open-fcoe-beta4-update: rediff. +- patches.drivers/open-fcoe-beta6-update: Incremental Open-FCoE + for Beta6 (bnc#438954). +* Fri Nov 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sony-vaio-vgn-sr19xn-quirk: ALSA: + hda - Add quirk for Sony VAIO VGN-SR19XN (bnc#450080). +* Fri Nov 28 2008 olh@suse.de +- rpm/kernel-binary.spec.in: move Module.symvers creation into + CONFIG_MODULES section, a static kernel exports nothing +* Fri Nov 28 2008 olh@suse.de +- rpm/post*.sh: kernel-vanilla has now vmlinux-vanilla symlink +* Fri Nov 28 2008 teheo@suse.de + Block layer timer bug fixed. Multipath patch update is just patch + refresh. +- patches.drivers/block-internal-dequeue-shouldnt-start-timer: + block: internal dequeue shouldn't start timer (bnc#449880). +- patches.drivers/blk-request-based-multipath-update: Block layer + fixes for request-based multipathing (References: FATE#302108). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix no-op macro args +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: fix compile on ppc32 +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: always create a dummy initrd because + mkinitrd is called unconditionally +* Thu Nov 27 2008 olh@suse.de +- rpm/kernel-binary.spec.in: kernel-ps3 needs a suffix +* Thu Nov 27 2008 olh@suse.de +- remove last traces of kernel-um handling +* Thu Nov 27 2008 hare@suse.de +- patches.fixes/qla2xxx-disable-automatic-queue-tracking: qla2xxx: + Conditionally disable queue_full tracking (bnc#449386). +* Thu Nov 27 2008 olh@suse.de +- patches.suse/8250-sysrq-ctrl_o.patch: no sysrq on Cell QS21/QS22 + serial console (bnc#422987,bnc#96313 - LTC47675/LTC16841). +* Thu Nov 27 2008 olh@suse.de +- patches.arch/ppc-memoryless-nodes.patch: fix booting with + memoryless nodes (443280 - LTC49675) +* Thu Nov 27 2008 teheo@suse.de +- patches.drivers/libata-seagate-firmware-bug: libata: blacklist + Seagate drives which time out FLUSH_CACHE when used with NCQ + (bnc#449531). +* Wed Nov 26 2008 agruen@suse.de +- rpm/macros.kernel-source: Fix the kernel flavor selection logic + for the %%kernel_module_package macro. +* Wed Nov 26 2008 hare@suse.de +- patches.fixes/blk-leave-sync-timer-running: move to + correct place in series.conf and rediff +- patches.drivers/cciss-newids.patch: Delete. +* Wed Nov 26 2008 hare@suse.de +- patches.drivers/cciss-newids.patch: Support for newcciss + controller (bnc#448416). +- patches.fixes/blk-leave-sync-timer-running: block: leave + request timeout timer running on an empty list (bnc#447249). +* Tue Nov 25 2008 mszeredi@suse.de +- patches.fixes/slab-alloc_slabmgmt-fix.patch: slab: remove + GFP_THISNODE clearing from alloc_slabmgmt() (bnc#444597). +* Tue Nov 25 2008 sjayaraman@suse.de +- patches.suse/SoN-11-mm-page_alloc-emerg.patch: Fix accidental side-effect + that this patch introduced by reverting patches.fixes/oom-warning + (bnc #444597). +* Tue Nov 25 2008 tiwai@suse.de +- patches.drivers/alsa-ca0106-pm-support: ALSA: ca0106 - Add + power-amangement support (bnc#447624). +- patches.drivers/alsa-hda-dell-92hd73xx-models: ALSA: hda - + Check model for Dell 92HD73xx laptops (bnc#446025). +- patches.drivers/alsa-hda-dell-studio-1535-quirk: ALSA: hda - + mark Dell studio 1535 quirk (bnc#446025). +- patches.drivers/alsa-hda-spdif-bits-cache-fix: ALSA: hda - + Fix caching of SPDIF status bits. +- patches.drivers/alsa-hda-stac-no-hp-as-line-out-switch: ALSA: + hda - No 'Headphone as Line-out' swich without line-outs + (bnc#446025). +- patches.drivers/alsa-hda-stac-yet-more-fixes: ALSA: hda - + Fix AFG power management on IDT 92HD* codecs (bnc#446025). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/fix-inotify-watch-removal-umount-races: Fix + inotify watch removal/umount races (bnc#446973 CVE-2008-5182). +* Tue Nov 25 2008 jeffm@suse.de +- patches.fixes/uv-redundant-creation-of-proc-dir: UV: redundant + creation of sgi_uv (bnc#444799). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid45 depends on a few more modules + (bnc#440208, bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Switch from a no_file_caps command line switch to file_caps={0,1} + for enabling/disabling file capabilities, and make file_caps=0 + the default: we cannot get the no_file_caps option added to the + kernel command line anymore (perl-Bootloader, bnc#418366). +* Mon Nov 24 2008 agruen@suse.de +- supported.conf: dm-raid4-5 was renamed to dm-raid45 (bnc#440208, + bnc#441310). +* Mon Nov 24 2008 agruen@suse.de +- Update config files: switch from CONFIG_PREEMPT_VOLUNTARY to + CONFIG_PREEMPT_NONE. +* Mon Nov 24 2008 ghaskins@suse.de +- patches.fixes/sched-fix-bug-in-sched-domain-degenerate.patch: + sched: fix a bug in sched domain degenerate (bnc#442464). +* Mon Nov 24 2008 mmarek@suse.cz +- doc/README.SUSE: document that setting allow_unsupported_modules + to 1 in /etc/modprobe.d/unsupported-modules is required to make + self-compiled kernels work. +* Mon Nov 24 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: Sync with latest upstream + submission. +* Sun Nov 23 2008 trenn@suse.de +- patches.arch/x86_sgi_uv_early_detect_oem.patch: x86, uv: + add early detection of UV system types (bnc#429984). +* Sat Nov 22 2008 olh@suse.de +- enable CONFIG_CGROUP_NS on ia64, s390 and powerpc (bnc#447507 - LTC50053) +* Sat Nov 22 2008 rjw@suse.de +- patches.fixes/ia64-fix-boot-panic-caused-by-offline-CPUs.patch: + fix boot panic caused by offline CPUs (bnc#440386). +* Fri Nov 21 2008 agruen@suse.de +- config/x86_64/maxcpus: Delete. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: s/CVS/GIT/ +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: fix module names in export lists + (kernel/irq/built-in was printed as irq/built-in) +* Fri Nov 21 2008 agruen@suse.de +- Update x86_64/{debug,default,trace,vanilla} config files: + increase NR_CPUS to 512. +* Fri Nov 21 2008 mmarek@suse.cz +- rpm/symsets.pl: Replace the bash and awk scripts around symsets + and kabi checking with a single script that generates symsets, + reuses symsets from older kernels and checks for kabi changes for + each of the split packages (kabi checking and symset reuse + require a set of reference files, which does not exist yet) +- rpm/list-exported-symbols: Delete. +- rpm/split-into-symsets: Delete. +- scripts/kabi-checks: Delete. +- kabi/severities: table of kabi change severities +- rpm/built-in-where, rpm/find-provides, + rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, + scripts/tar-up.sh: update to use symsets.pl +* Fri Nov 21 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: include additional fixes from + Intel (bnc#442411) +* Fri Nov 21 2008 kkeil@suse.de +- patches.fixes/igb_ethtool.patch: add missing ethtool hooks + (bnc#435551) +* Fri Nov 21 2008 jjolly@suse.de +- patches.arch/s390-04-08-cio-ungroup-race-fix.patch: + cio: ccwgroup online vs. ungroup race condition + (bnc#445100,LTC#50092). +- patches.arch/s390-04-09-zfcp-host-busy-count-fix.patch: zfcp: + prevent double decrement on host_busy counter (bnc#445100). +* Fri Nov 21 2008 agruen@suse.de +- rpm/macros.kernel-source: + + Rename the -s option to -t in the %%kernel_module_package macro + for improved cross-distro compatibility. + + Define %%kernel_module_package_release as 1 for feature tests. + + Define %%kernel_module_package_buildreqs for use by KMPs: that + way, KMPs can either use this macro for compatibility, or + they can substitute other packages for special cases. +* Fri Nov 21 2008 hare@suse.de +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3i-fixed-offload-array-size: cxgb3i - + fixed offload wr array size (bnc#447409). +- patches.fixes/dm-table-switch-to-readonly: dm multipath devices + are not getting created for readonly devices (bnc#382705). +- patches.suse/dm-mpath-null-pgs: Allow zero paths for multipath + priority groups (bnc#372684). +- patches.suse/scsi-netlink-ml: Netlink interface for SCSI + sense codes (FATE#303789). +* Fri Nov 21 2008 goldwyn@suse.de +- patches.suse/novfs-map-drives-correctly.diff: Fix oops in + set_map_drive (bnc#446824, bnc#444469). +* Fri Nov 21 2008 jbeulich@novell.com +- patches.xen/xen3-x86-vmware-tsc-03-detect-from-hypervisor: + Fix Xen pv driver build. +* Fri Nov 21 2008 olh@suse.de +- patches.arch/ppc-spufs-01-use-inc_nlink.patch: use inc_nlink +- patches.arch/ppc-spufs-02-add-a-missing-mutex_unlock.patch +- patches.arch/ppc-spufs-03-sputrace-Only-enable-logging-on-open.patch +- patches.arch/ppc-spufs-04-sputrace-Don-t-block-until-the-read.patch +- patches.arch/ppc-spufs-05-Use-state_mutex-for-switch_log-lockin.patch +- patches.arch/ppc-spufs-06-Don-t-require-full-buffer-in-switch_l.patch +- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch +- patches.arch/ppc-spufs-08-Use-kmalloc-rather-than-kzalloc-for-s.patch +- patches.arch/ppc-spufs-09-Improve-search-of-node-for-contexts-w.patch +- patches.arch/ppc-spufs-10-Explain-conditional-decrement-of-aff_.patch +- patches.arch/ppc-spufs-11-Fix-spinning-in-spufs_ps_fault-on-sig.patch + update spufs to current mainline state (bnc#447133 - LTC50070) +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/parport-serial-array-overflow-fix: Fix array + overflow in parport_serial.c (bnc#447067). +* Fri Nov 21 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-15-quirk: ALSA: hda - + Add a quirk for Dell Studio 15 (bnc#446025). +- patches.drivers/alsa-hda-stac-dell-m4-3-quirk: ALSA: hda: + Add STAC_DELL_M4_3 quirk (bnc#446025). +* Fri Nov 21 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap. Try again. +* Fri Nov 21 2008 gregkh@suse.de +- Refresh patches to apply cleanly after 2.6.27.7 update. +* Fri Nov 21 2008 gregkh@suse.de +- Update to 2.6.27.7 + - lots of bugfixes and security updates. + - obsoletes: + - patches.arch/s390-04-05-topology-lock.diff + - patches.drivers/bnx2x-zero-PMF + - patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch + - patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch + - patches.fixes/sony_laptop_fix_suspend.patch + - patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch + - patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch + - patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: +* Fri Nov 21 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-clear-spurious-IRQ: ata_piix: + detect and clear spurious IRQs (bnc#445872). +* Fri Nov 21 2008 npiggin@suse.de +- patches.fixes/mm-madvise-fix.patch: mm: madvise correct return + code (bnc#352998). +* Thu Nov 20 2008 jack@suse.cz +- patches.suse/ocfs2-Change-quotafile-names.patch: ocfs2: Change + file names of local quota files to be consistent (fate#302681). +- patches.suse/ocfs2-Fix-hang-in-quota-recovery-code.patch: + ocfs2: Fix hang in quota recovery code (fate#302681). +- patches.suse/ocfs2-Fix-oops-when-one-quotatype-enabled: ocfs2: + Fix oops when only usrquota or grpquota feature is enabled + (fate#302681). +* Thu Nov 20 2008 garloff@suse.de +- patches.suse/panic-on-io-nmi.diff + patches.xen/panic-on-io-nmi-xen.diff: + New kernel sysctl panic-on-io-nmi, which is set will cause a + kernel panic on receiving an IOCK NMI (bnc#427979). +* Thu Nov 20 2008 jjolly@suse.de +- patches.arch/s390-04-06-cio-sac-update.diff: cio: update sac + values (bnc#445100). +- patches.arch/s390-04-07-als.patch: kernel: Add processor type + march=z10 and a processor type safety check. (bnc#445100). +* Thu Nov 20 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-gpio-switch-fix: ALSA: hda: + STAC_DELL_M6 EAPD (bnc#446025). +* Thu Nov 20 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.6 and c/s 724. +- Update Xen config files. +- patches.xen/xen-fb-bad-irq: xenfb: don't use irq before it + gets set up (bnc#445659). +- patches.xen/xen-netback-notify-multi: netback: use multicall + for send multiple notifications. +- patches.xen/xen-netback-nr-irqs: netback: reduce overhead of + IRQ recording. +* Thu Nov 20 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: removed (no SR-IOV) (bnc#440614) +* Thu Nov 20 2008 olh@suse.de +- disable patches.arch/ppc-efika-bestcomm-ata-dma.patch + crashes the sound driver +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: excluded vanilla build from creating + the man package +* Thu Nov 20 2008 hare@suse.de +- patches.drivers/ibmvfc-async-events-oops: ibmvfc oops while + processing async events (bnc#445541). +- patches.drivers/mpt-fusion-4.16.00.00-update: MPT fusion driver + update to 4.16.00.00 (bnc#425660). +- patches.fixes/dm-mpath-NULL-pgpath-in-activate_path: Do not + call activate_path() if pgpath is NULL (bnc#442676). +- patches.fixes/scsi-dh-rdac-initialize-passive-path: Initialize + path state to be passive when path is not owned (bnc#442676). +- patches.suse/dm-mpath-leastpending-path: Dynamic load balancing + policy for device mapper multipath (bnc#444199). +* Thu Nov 20 2008 olh@suse.de +- patches.fixes/bug-437171_1_sched_clock_lock.patch: sched: only + update rq->clock while holding rq->lock (437171 - LTC47404). +- patches.fixes/bug-437171_2_sched_delta_weight.patch: sched: + revert back to per-rq vruntime (437171 - LTC47404). +- patches.fixes/bug-437171_3_rework_wakeup_preemption.patch: + sched: rework wakeup preemption (437171 - LTC47404). +- patches.fixes/bug-437171_4_sched_reinstate_vruntime_wakeup.patch: + sched: re-instate vruntime based wakeup preemption (437171 - + LTC47404). +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + Fixed debug build, added dependent config option. +* Thu Nov 20 2008 trenn@suse.de +- Update config files. + -> unified i386/x86_64 debug kernels: + - added CONFIG_NO_HZ=y to i386-debug + - added CONFIG_DEBUG_INFO to x86_64-debug + Differ method to receive processor_id depending whether the processor + got declared as a regular ACPI device or as a processor object: +- patches.arch/acpi_behave_uniquely_based_on_processor_declaration.patch: + ACPI: Behave uniquely based on processor declaration definition + type (bnc#440062). +- patches.arch/acpi_disambiguate_processor_declaration_type.patch: + ACPI: Disambiguate processor declaration type (bnc#440062). +- patches.arch/acpi_processor_cleanups.patch: ACPI: 80 column + adherence and spelling fix (no functional change) (bnc#440062). +- patches.xen/xen3-auto-common.diff: xen3 common. + Fix missing bit for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. +- patches.fixes/sony_laptop_fix_suspend.patch: sony-laptop: + Ignore missing _DIS method on pic device (bnc#446487). +* Thu Nov 20 2008 hare@suse.de +- patches.fixes/dm-mpath-reattach-dh: Do not detach hardware + handler when removing multipath maps (bnc#435688). +- patches.fixes/scsi-dh-alua-send-stpg: Always send STPG for + explicit tgps mode. +* Thu Nov 20 2008 jjolly@suse.de +- rpm/kernel-binary.spec.in: Added kernel man package for s390x +* Thu Nov 20 2008 olh@suse.de +- patches.arch/ppc-of-irq-map.patch: fix IRQ assignment if + interrupts property is missing (bnc#446610 - LTC50006) +* Thu Nov 20 2008 rjw@suse.de +- patches.fixes/acpi-set-SCI_EN-on-MacBook.patch: ACPI suspend: + Blacklist boxes that require us to set SCI_EN directly on resume + (bnc#444786). +* Wed Nov 19 2008 tiwai@suse.de +- patches.arch/x86-hpet-pre-read: x86: workaround for mccreary + HPET read problem (bnc#433746). +* Wed Nov 19 2008 trenn@suse.de +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. + -> Fix typo, must not invert logic at this point +* Wed Nov 19 2008 kkeil@suse.de +- patches.drivers/e1000e_add_ECC: e1000e: enable ECC (bnc#445829) +* Wed Nov 19 2008 mmarek@suse.cz +- scripts/tar-up.sh: record the git branch name in the spec files + (no branch name means master) +* Wed Nov 19 2008 jkosina@suse.de +- patches.drivers/elousb.patch: fix values of maximum X and Y + coordinates so that they are compliant with the values that + the device contains in its descriptor (bnc#442865) +* Wed Nov 19 2008 goldwyn@suse.de +- patches.suse/novfs-merge-changes.diff: Merge changes left out + during code pull (bnc#445000). +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-multinode.patch: Add support for + multiple BSR nodes in the device tree. (bnc#443665 - LTC49817) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-cmm-pagecounter.patch: + Update page in counter for CMM (bnc#445540 - LTC49942) +* Wed Nov 19 2008 olh@suse.de +- patches.arch/ppc-pseries-bsr-4k.patch: Unable to Use Small + BSR register on Power LPAR (bnc#443673 - LTC49749) +* Wed Nov 19 2008 jjolly@suse.de +- config/s390/s390: Update config files: added CONFIG_UTRACE=y and + CONFIG_HAVE_ARCH_TRACEHOOK=y +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/ehca-fix-possible-nullpointer-access-v2.patch: + ehca: fix a possible nullpointer access (bnc#441966). +* Wed Nov 19 2008 jjolly@suse.de +- patches.arch/ppc-axon-missing-msi-workaround-5.diff: + powerpc/cell/axon-msi: retry on missing interrupt (bnc#445964). +* Wed Nov 19 2008 jjolly@suse.de +- patches.drivers/0001-IB-ehca-Fix-problem-with-max-number-of-QPs-and-CQs.patch: + Fix problem with max number of QPs and CQs (bnc#441619). +* Tue Nov 18 2008 bwalle@suse.de +- Disable CONFIG_STRICT_DEVMEM for i386 and x86_64 (bnc#443852). +* Tue Nov 18 2008 jjolly@suse.de +- Update config files. +- patches.trace/s390-syscall-get-nr.diff: fix syscall_get_nr.. +- patches.trace/s390-utrace-enablement.patch: Backport s390 + kernel components required for utrace enablement. +* Tue Nov 18 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: on s390(x) call dwarfextract to create the + Kerntypes file for use with old lcrash debuggers. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix: ALSA: + hda - Fix GPIO initialization in patch_stac92hd71bxx() + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-gpio-unsol-resume-fix: + ALSA: hda - Fix resume of GPIO unsol event for STAC/IDT + (bnc#445321,bnc#445161). +- patches.drivers/alsa-hda-stac-hp-pavilion-quirks: ALSA: hda - + Add quirks for HP Pavilion DV models (bnc#445321,bnc#445161). +* Tue Nov 18 2008 tiwai@suse.de +- patches.arch/x86-hpet-use-WARN_ON_ONCE: x86: HPET: convert + WARN_ON to WARN_ON_ONCE (bnc#433746). +* Tue Nov 18 2008 sdietrich@suse.de + RT development has moved to slert-devel branch. +- Remove RT patches from master branch. + (itemized RT patch list suppressed) +* Tue Nov 18 2008 olh@suse.de +- patches.arch/ppc-efika-bestcomm-ata-dma.patch: use ATA DMA (bnc#445856) +* Tue Nov 18 2008 olh@suse.de +- config/ppc/ppc64: reenable 64k PAGE_SIZE to keep the config + flavor on ppc and ppc64 in sync + the last change had also no bug number to fix the possible bug + in the Xserver. +* Tue Nov 18 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-acer-dmic: ALSA: hda - Split + ALC268 acer model (bnc#420048). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-04-01-qdio_prevent_double_shutdown.patch: + qdio: prevent double qdio shutdown in case of I/O + errors. (bnc#445100). +- patches.arch/s390-04-02-qdio-osa-port-count.patch: qdio: + fix qeth port count detection. (bnc#445100). +- patches.arch/s390-04-03-kmsg.patch: kmsg: do not change pr_xyz + messages without KMSG_COMPONENT (bnc#445100). +- patches.arch/s390-04-04-dasd_fatal_error_log_sense.patch: + dasd: log sense for fatal errors. (bnc#445100). +- patches.arch/s390-04-05-topology-lock.diff: kernel: Fix locking + in cpu topology code. (bnc#445100). +* Tue Nov 18 2008 jjolly@suse.de +- patches.arch/s390-personality-mask.patch: fix s390x_newuname. +* Tue Nov 18 2008 gregkh@suse.de +- patches.drivers/staging-rt2860-enable-wpa_supplicant-support.patch: + Staging: rt2860: enable WPA_SUPPLICANT support (bnc#437959). +* Mon Nov 17 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.7-update: Update lpfc to 8.2.8.7 + (bnc#420767). +- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Update + qla4xxx to 5.01.00-k8_sles11-03 (bnc#444884). +- patches.fixes/dm-mpath-reattach-dh: Reattach device handler + for multipath devices (bnc#435688). +- patches.fixes/scsi-add-tgps-setting: Add TGPS setting to + scsi devices. +- patches.fixes/scsi-dh-alua-retry-UA: Retry ALUA device handler + initialization on Unit Attention. +* Mon Nov 17 2008 jeffm@suse.de +- patches.fixes/v4l-dvb-avoid-writing-outside-array: V4L/DVB + (9621): Avoid writing outside shadow.bytes array (bnc#445569). +* Mon Nov 17 2008 fseidel@suse.de +- patches.fixes/ipw2200-send-noassoc.patch: ipw2200: fix oops + in ipw_tx_skb (bnc#397390). +* Sat Nov 15 2008 rjw@suse.com +- patches.fixes/hibernate-x86-fix-breakage-on-x86_32-with-PAE.patch: + x86: Hibernate: Fix breakage on x86_32 with CONFIG_NUMA set + (bnc#439126). +* Sat Nov 15 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-hp-m4-check-fix: ALSA: + hda - Check model type instead of SSID in patch_92hd71bxx() + (bnc#444349). +- patches.drivers/alsa-hda-sigmatel-vref-event-fix: ALSA: hda: + STAC_VREF_EVENT value change (bnc#444349). +* Sat Nov 15 2008 gregkh@suse.de +- patches.kernel.org/memory-hotplug-fix-page_zone-calculation-in-test_pages_isolated.patch: + memory hotplug: fix page_zone() calculation in + test_pages_isolated() (bnc#445163). +* Fri Nov 14 2008 gregkh@suse.de +- patches.drivers/input-alps-add-signature-for-dualpoint-found-in-dell-latitude-e6500.patch: + Input: ALPS - add signature for DualPoint found in Dell Latitude + E6500 (bnc#436719). +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 hare@suse.de +- patches.fixes/scsi-eh-timed-out-missing-braces: scsi_error: + fix indentation and braces disagreement - add braces. +- patches.fixes/scsi-retry-TASK_ABORTED: scsi_error: TASK ABORTED + status handling improvement. +- patches.fixes/scsi-retry-transport-error: scsi_error regression: + Fix idempotent command handling. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/hpwdt-execute-page.diff: + [WATCHDOG] [hpwdt] Set the mapped BIOS address space as + executable (bnc#430680). +* Fri Nov 14 2008 tiwai@suse.de +- patches.arch/x86-vmware-tsc-01-add-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-02-add-X86_FEATURE_HYPERVISOR, + patches.arch/x86-vmware-tsc-03-detect-from-hypervisor, + patches.arch/x86-vmware-tsc-04-use-TSC_RELIABLE, + patches.arch/x86-vmware-tsc-05-skip-tsc-clocksource, + patches.arch/x86-vmware-tsc-06-fix-vmware_get_tsc, + patches.arch/x86-vmware-tsc-07-DMI-product-serial-key, + patches.xen/xen-x86-vmware-tsc-fix: + VMware tsc clocksource workaround (bnc#441338). +* Fri Nov 14 2008 tiwai@suse.de +- Fixed a typo in definition of X86_FEATURE_XTOPOLOGY (bnc#443293) + in patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4 +* Fri Nov 14 2008 agruen@suse.de +- Update CONFIG_X86_RESERVE_LOW_64K in config/x86_64/maxcpus as + well. +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: + rename to patches.suse/mem_cgroup_stat-dynamic-alloc, and update + to newer version. +* Fri Nov 14 2008 bwalle@suse.de +- patches.fixes/kdump-x86-sparsemem.diff: x86, kdump: fix invalid + access on i386 sparsemem (bnc#440525). +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + Refresh. +* Fri Nov 14 2008 gregkh@suse.de +- patches.kernel.org/iwlagn-avoid-sleep-in-softirq-context.patch: + iwlagn: avoid sleep in softirq context (bnc#444382). +* Fri Nov 14 2008 philips@suse.de +- patches.fixes/cdc-acm.c-fix-recursive-lock-in-acm_start_wb-error-path.patch: + cdc-acm.c: fix recursive lock in acm_start_wb error path. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K for i386 and x86-64 vanilla + configs. +* Thu Nov 13 2008 gregkh@suse.de +- enable CONFIG_X86_RESERVE_LOW_64K on i386 and x86-64 to fix some + suspend/resume issues (option added in 2.6.27.6) +* Thu Nov 13 2008 gregkh@suse.de +- refresh patches so that everything applies cleanly. +* Thu Nov 13 2008 gregkh@suse.de +- Update to 2.6.27.6: + - fixes some security issues + - lots of bugfixes + - obsoletes: + - patches.arch/acpi-dock-avoid-check-_STA-method.patch: + - patches.arch/ppc-gigantic-page-fix2.patch: + - patches.arch/ppc-gigantic-page-fix3.patch: + - patches.drivers/alsa-hda-dell-eq-option: + - patches.drivers/cciss-fix-procfs-firmware-regression.patch: + - patches.drivers/cciss-fix-sysfs-symlink.patch: + - patches.drivers/libata-fix-last_reset-timestamp-handling: + - patches.kernel.org/md-raid10-recovoery-fix.path: +* Thu Nov 13 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: package modules.order (bnc#441384) +* Thu Nov 13 2008 agruen@suse.de +- config.conf: Add x86_64/maxcpus as the 4096-cpu configuration + and switch back to at most 128 cpus in the other configs. This + avoids wasting memory on all but the most extreme x86_64 + systems. +- rpm/kernel-binary.spec.in: define a kernel-$flavor symbol to + allow per-flavor patches. (Use this for testing only!) +- patches.suse/bug-425240_nr_cpus-mem_cgroup_stat-fix.diff: Add + this patch conditionally for x86_64/maxcpus for now pending + test results from bnc#425240. +* Thu Nov 13 2008 tiwai@suse.de +- patches.drivers/alsa-hda-beep-dig-switch: ALSA: hda - Add + digital beep playback switch for STAC/IDT codecs (#444572). +- patches.drivers/alsa-hda-beep-null-check-fix: ALSA: hda - + Missing NULL check in hda_beep.c. +* Thu Nov 13 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: fix to + make it work with iSCSI (bnc#444234) +* Thu Nov 13 2008 olh@suse.de +- mark some powerpc device drivers as supported to move them out of + kernel-extra, otherwise installation-images will not pick them up +- ps3vram, mtd, mtdblock, mtd_blkdevs (bnc#444220) +- PowerMac, Efika and Pegasos2 storage and network drivers +* Wed Nov 12 2008 bwalle@suse.de +- patches.fixes/firmware-memmap-64bit.diff: Always use 64 bit + addresses for the firmware memory map. +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-powermac-ibook-g4-mic-fix: ALSA: powermac - + Rename mic-analog loopback mixer element (bnc#444194). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac-hp-detect-fix: ALSA: hda - + Fix IDT/STAC multiple HP detection (bnc#443267). +* Wed Nov 12 2008 agruen@suse.de +- patches.suse/module-ref-dynamic-alloc: fall back to vmalloc if + kmalloc fails (bnc#425240). +* Wed Nov 12 2008 tiwai@suse.de +- patches.drivers/alsa-hda-stac9200-missing-mux-capture: ALSA: + hda - Add missing analog-mux mixer creation for STAC9200 + (bnc#443738). +- patches.drivers/alsa-hda-stac92xx-mic-pin-fix: ALSA: hda - + Fix input pin initialization for STAC/IDT codecs (bnc#443738). +* Wed Nov 12 2008 philips@suse.de +- rpm/kernel-binary.spec.in: remove Recommends: kerneloops, opt-in will + be implemented in the 11.2 installer +* Tue Nov 11 2008 jeffm@suse.de +- patches.fixes/reiserfs-error-buffer-locking: reiserfs: add + locking around error buffer. +- patches.fixes/reiserfs-varargs-fix: reiserfs: prepare_error_buf + wrongly consumes va_arg. +* Tue Nov 11 2008 tiwai@suse.de +- patches.suse/module-ref-dynamic-alloc: Allocate module.ref + array dynamically (bnc#425240). +- Update config files: back to NR_CPUS=4096 +* Tue Nov 11 2008 jblunck@suse.de +- Update config files: Set NR_CPUS on x86_64 back to 128 again for + now: with NR_CPUS=4096, the size of eack .ko file increases by + 496 KiB because of the static struct module in + .gnu.linkonce.this_module. +* Tue Nov 11 2008 schwab@suse.de +- patches.arch/ppc-select: Fix wrong error code from ppc32 select. +* Tue Nov 11 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: also encode the architecture into the + packageand supplements. +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-fix-ata_tf_read_block-overflow: libata: + Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127 + (bnc#443661). +- patches.drivers/libata-fix-ata_tf_to_lba48-overflow: libata: + Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 + (bnc#443661). +* Tue Nov 11 2008 teheo@suse.de +- patches.drivers/libata-pata_sch-slave-poss: pata_sch: slave + devices (bnc#443657). +* Mon Nov 10 2008 schwab@suse.de +- config/ppc/ppc64: Disable 64k pages to work around X server bug. +* Mon Nov 10 2008 olh@suse.de +- rpm/kernel-binary.spec.in: fix variable assignment in last change +* Mon Nov 10 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: encode the architecture into + subpackage dependencies (bnc#440961) +* Mon Nov 10 2008 olh@suse.de +- handle arch differences for cpu and kbuild correctly +* Mon Nov 10 2008 schwab@suse.de +- patches.arch/ia64-page-migration. patches.arch/mm-avoid-bad-page-on-lru: + migrade pages off of pages with correctable errors. +* Mon Nov 10 2008 mmarek@suse.cz +- scripts/tar-up.sh: do not generate kernel-source-rt.spec and + kernel-syms-rt.spec if RT is not enabled. +* Mon Nov 10 2008 sdietrich@suse.de +- config.conf: Suppress RT configurations. +* Sun Nov 09 2008 jeffm@suse.de +- config.conf: Removed previous workaround. +- rpm/kernel-binary.spec.in: Remove @FLAVOR@ from %%symbols. +* Sat Nov 08 2008 jeffm@suse.de +- config.conf: Workaround for kernel-ppc64 on head-ppc. +* Sat Nov 08 2008 gregkh@suse.de +- Update to the "real" 2.6.27.5. No code changes from what we had + in our tree previously, with the exception for the version number + change. +* Fri Nov 07 2008 bwalle@suse.de +- patches.fixes/kdb-read-CR.diff: + Support '\n' in KDB (bnc#442808). +* Fri Nov 07 2008 gregkh@suse.de +- disable perfmon support in the -trace kernels as it doesn't build + properly. +* Fri Nov 07 2008 schwab@suse.de +- patches.arch/compat-sys-swapcontext: Fix msr check in sys_swapcontext. +* Fri Nov 07 2008 hare@suse.de +- patches.drivers/ixgbe-add-bcna-support: DCB: Add BCNA support + to ixgbe. +- patches.drivers/open-fcoe-beta3-update: Open-FCoE update for + Beta3 (bnc#438954). +- patches.drivers/open-fcoe-beta4-update: Open-FCoE: Update for + Beta4 (bnc#438954). +- patches.drivers/open-fcoe-beta5-update: Open-FCoE: Update for + Beta5 (bnc#438954). +- patches.fixes/dcb-fix-setpfcstate: Fix setpfcstate (bnc#438954). +- patches.fixes/dcb-setting-pg-will-cause-tx-hang: DCB: setting + pg will cause tx unit hangs (bnc#438954). +- patches.fixes/multiq-requeue-should-rewind-current_band: + multiq: requeue should rewind the current_band (bnc#438954). +- patches.fixes/scsi-dh-rdac-retry-mode-select: Retry mode select + in RDAC device handler (bnc#441337). +- patches.fixes/scsi-dh-rdac-set-default-ownership: scsi_dh_rdac: + make sure the ownership is set correctly (bnc#441337). +- patches.fixes/scsi-skip-nonscsi-device-for-dma: Update patch + to check for ->bus instead of ->type (bnc#431294). +* Fri Nov 07 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dell-studio-probe-fix: ALSA: hda - + Fix probe errors on Dell Studio Desktop (bnc#440907). +- patches.drivers/alsa-hda-hp-3013-master-fix: ALSA: hda - + Fix ALC260 hp3013 master switch (bnc#441068). +* Fri Nov 07 2008 jjolly@suse.de +- patches.arch/s390-03-07-qeth_hsi_mcl_string.patch: + qeth: pre z9 systems return HiperSocket version string + different. (bnc#440610,LTC#49052). +- patches.arch/s390-03-08-zfcp-abort-race.patch: zfcp: eliminate + race between validation and locking. (bnc#440610). +- patches.arch/s390-03-09-zfcp-oops-during-target-scan.patch: + zfcp: prevent SCSI target scan for vanished rport + (bnc#440610,LTC#49373). +* Fri Nov 07 2008 olh@suse.de +- Update config files for RT +* Fri Nov 07 2008 olh@suse.de +- build a kernel-default in dist ppc64, its identical to kernel-ppc64 + otherwise unused +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-source.spec.in: map ppc/ppc64 to powerpc +* Fri Nov 07 2008 kkeil@suse.de +- patches.drivers/igb-pf.patch: VF enabled igb driver (fate#305004) +* Fri Nov 07 2008 olh@suse.de +- stop building kernel-default and kernel-ps3 in dist ppc64, + they are openSuSE only packages +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: extracting debuginfo from vdso fails + on powerpc, disable vdso_install for the time being +* Fri Nov 07 2008 jbeulich@novell.com +- patches.xen/xen3-intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +* Fri Nov 07 2008 olh@suse.de +- rpm/post.sh: reject legacy iSeries again +* Fri Nov 07 2008 olh@suse.de +- build a 32bit and a 64bit vanilla kernel on powerpc +* Fri Nov 07 2008 olh@suse.de +- rpm/kernel-binary.spec.in: no vdso in vanilla and ps3 kernel +* Fri Nov 07 2008 gregkh@suse.de +- patches.kernel.org/net-fix-recursive-descent-in-__scm_destroy.patch: + net: Fix recursive descent in __scm_destroy().. +* Fri Nov 07 2008 olh@suse.de +- remove patches.arch/ppc64-rpanote-relocate-firmware.patch + older firmware versions can handle relocation properly (bnc#427960) +* Fri Nov 07 2008 jjolly@suse.de +- patches.drivers/cxgb3-get_drvinfo-deadlock.patch: RDMA/cxgb3: + deadlock in iw_cxgb3 can cause hang when configuring + interface. (bnc#430998). +* Fri Nov 07 2008 gregkh@suse.de +- patches.suse/perfmon2.patch: perfmon2 (bnc#430298). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.fixes/nfs-write.c-bug-removal.patch: Revert "NFS: + Allow redirtying of a completed unstable write." (442267). + It causes a BUG(). +* Fri Nov 07 2008 nfbrown@suse.de +- patches.kernel.org/md-raid10-recovoery-fix.path: md: fix bug + in raid10 recovery.. +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped..: Removed much of this patch as it turned out + to be both buggy and unnecessary (the ioctl can be done from + mdadm). +* Thu Nov 06 2008 kkeil@suse.de +- patches.drivers/ixgbe-sfp.patch: ixgbe driver update to add + Longcove (SFP+) NIC support for FCoE needs (bnc#442411) +* Thu Nov 06 2008 gregkh@suse.de +- enable CONFIG_X86_SUMMIT, CONFIG_X86_ES7000, and CONFIG_X86_BIGSMP + for the i386 default kernel, so that the installer can actually + boot on "modern" multiprocessor i386 boxes (bnc#428247) +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install only on x86 and ppc. +* Thu Nov 06 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Call make vdso_install to install the + vdso shared objects for debugging. +* Thu Nov 06 2008 jjolly@suse.de +- patches.drivers/intel-ibex-peak-device-ids.patch: x86/PCI: irq + and pci_ids patch for Intel Ibex Peak DeviceIDs (bnc#415383). +- patches.drivers/intel-ibex-peak-device-support.patch: i2c-i801: + Add support for Intel Ibex Peak (bnc#415383). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: Fixed patch for build +- patches.arch/s390-03-04-qdio_multicast_performance.patch: dasd: + fix message flood for unsolicited interrupts (bnc#440610). +- patches.arch/s390-03-05-dasd-block-uevent.patch: dasd: DASD + uevents are not sent correctly (bnc#440610,LTC#49429). +- patches.arch/s390-03-06-zfcp-hexdump.patch: zfcp: fix hexdump + data in s390dbf traces (bnc#440610). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-03-01-stp-init.patch: kernel: Fix + initialization of stp. (bnc#440610,LTC#49639). +- patches.arch/s390-03-02-setup_memory.patch: kernel: Fix range + for add_active_range() in setup_memory() (bnc#440610,LTC#49639). +- patches.arch/s390-03-03-dasd_unsolicited_interrupt.patch: + dasd: fix message flood for unsolicited interrupts + (bnc#440610,LTC#49639). +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-02-10-zfcp-scan-online.patch: wait for port + scan when setting FCP device online (bnc#434333). +* Thu Nov 06 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27.4 and c/s 718. +- Update Xen config files. +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: Include + pv-ops-Xen changes here +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: Delete. +- patches.xen/xen-configurable-guest-devices: allow number of + guest devices to be configurable. +- patches.xen/xen-cpufreq-report: make /proc/cpuinfo track + CPU speed. +- patches.xen/xen-ipi-per-cpu-irq: fold IPIs onto a single + IRQ each. +- patches.xen/xen-rtl2860-build: Rename to ... +- patches.xen/xen-rt2860-build: ... this. +- patches.xen/xen-sysdev-suspend: use base kernel suspend/resume + infrastructure. +- patches.xen/xen-virq-per-cpu-irq: fold per-CPU VIRQs onto a + single IRQ each. +- patches.xen/xen-x86-mmu-batching: Delete. +- patches.xen/xen3-patch-2.6.27.3-4: Linux 2.6.27.4. +- patches.xen/xen3-x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.xen/xen3-x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.xen/xen3-x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +* Thu Nov 06 2008 sassmann@suse.de +- patches.arch/ppc-ps3-introduce-ps3_gpu_mutex.patch: required for + new ps3vram patch +- patches.arch/ppc-ps3-ps3vram-mtd.patch: updated ps3vram patch + that works with firmware 2.50 (bnc#442227) +* Thu Nov 06 2008 olh@suse.de +- remove unneeded BuildRequires for dtc +* Thu Nov 06 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: Feature removed + (bnc#417299) +* Thu Nov 06 2008 gregkh@suse.de +- patches.suse/file-capabilities-add-no_file_caps-switch.patch: + file capabilities: add no_file_caps switch (v4). + add the patch back into the tree. +* Wed Nov 05 2008 jblunck@suse.de +- patches.suse/coredump_filter-add-elfhdr-default.patch: Dump + elf headers to core per default. +* Wed Nov 05 2008 teheo@suse.de + Fix !CONFIG_DMI case. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +* Wed Nov 05 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: update patch + to skip all devices with no dma_parms (bnc#431294) +* Wed Nov 05 2008 agruen@suse.de +- rpm/kernel-module-subpackage: Remove the obsolete kernel-$flavor + dependency (bnc#440961). +* Wed Nov 05 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Removed and replaced with + v3 of the patch from IBM (bnc#417300) +- patches.arch/s390-01-05-kmsg-v3.patch: Kernel message catalog + infrastucture and message generation (bnc#417300). +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Patch edited to allow new kmsg patch +* Wed Nov 05 2008 agruen@suse.de +- Update config files: set CONFIG_MODULE_FORCE_LOAD=y to allow + ignoring ABI mismatches. (This is still unsafe to do!) +* Wed Nov 05 2008 tiwai@suse.de + Backport fixes from 2.6.28-rc. +- patches.drivers/alsa-hda-acer-quirk: ALSA: hda - Add a quirk + for another Acer Aspire (1025:0090) (bnc#426935). +- patches.drivers/alsa-hda-alc888-medion-add: ALSA: hda - Add + a quirk for MEDION MD96630 (bnc#412548). +- patches.drivers/alsa-hda-dell-eq-option: ALSA: hda: make a + STAC_DELL_EQ option. +- patches.drivers/alsa-hda-proc-gpio-fix: ALSA: hda - Limit the + number of GPIOs show in proc. +* Wed Nov 05 2008 gregkh@suse.de +- refresh -rt patches to remove fuzz. +* Wed Nov 05 2008 teheo@suse.de + Backport two more device specific workarounds from 2.6.28-rc. +- patches.drivers/libata-add-and-use-HORKAGE_ATAPI_MOD16_DMA: + libata: implement ATA_HORKAGE_ATAPI_MOD16_DMA and apply it. +- patches.drivers/libata-whitelist-good-bridges: libata: add + whitelist for devices with known good pata-sata bridges. +* Wed Nov 05 2008 gregkh@suse.de +- refresh patches to remove fuzz +* Wed Nov 05 2008 teheo@suse.de + Backport double spin off workaround. +- patches.drivers/dmi-introduce-dmi_first_match: DMI: + Introduce dmi_first_match to make the interface more flexible + (bnc#441721). +- patches.drivers/libata-ahci-blacklist-double-spin-off: SATA + AHCI: Blacklist system that spins off disks during ACPI power + off (bnc#441721). +- patches.drivers/libata-ata_piix-blacklist-double-spin-off: + SATA PIIX: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/libata-implement-NO_SPINDOWN: SATA: Blacklisting + of systems that spin off disks during ACPI power off (rev. 2) + (bnc#441721). +- patches.drivers/libata-sata_sil-blacklist-double-spin-off: + SATA Sil: Blacklist system that spins off disks during ACPI + power off (bnc#441721). +- patches.drivers/power-introduce-system_entering_hibernation: + Hibernation: Introduce system_entering_hibernation (bnc#441721). +* Wed Nov 05 2008 gregkh@suse.de +- fix rt tree that was broken by 2.6.27.5-rc1 +* Wed Nov 05 2008 olh@suse.de +- update patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix booting on ppc32 (bnc#439491 - LTC48584) +* Wed Nov 05 2008 teheo@suse.de + Backport sata_via fixes from 2.6.28-rc. +- patches.drivers/libata-sata_via-fix-support-for-5287: sata_via: + fix support for 5287 (bnc#441718). +- patches.drivers/libata-sata_via-load-DEVICE-register-when-CTL-changes: + sata_via: load DEVICE register when CTL changes (bnc#441718). +- patches.drivers/libata-sata_via-restore-vt-_prepare_host-error-handling: + sata_via: restore vt*_prepare_host error handling (bnc#441718). +* Wed Nov 05 2008 teheo@suse.de + Backport laptop table and pci device ID table entries from 2.6.28-rc. +- patches.drivers/libata-ata_piix-add-Hercules-EC-900-mini-to-laptop-tbl: + ata_piix: add Hercules EC-900 mini-notebook to ich_laptop + short cable list. +- patches.drivers/libata-ata_piix-add-intel-ibex-pci-ids: + ata_piix: IDE Mode SATA patch for Intel Ibex Peak DeviceIDs. +* Wed Nov 05 2008 teheo@suse.de + Backport slave_link from 2.6.28-rc to fix ata_piix probing problem. +- patches.drivers/libata-ata_piix-use-slave_link: ata_piix: + drop merged SCR access and use slave_link instead (bnc#441420). +- patches.drivers/libata-eh-fix-slave-link-EH-action-mask-handling: + libata-eh: fix slave link EH action mask handling (bnc#441420). +- patches.drivers/libata-implement-slave_link: libata: implement + slave_link (bnc#441420). +- patches.drivers/libata-make-SCR-access-ops-per-link: libata: + make SCR access ops per-link (bnc#441420). +- patches.drivers/libata-misc-updates-to-prepare-for-slave-link: + libata: misc updates to prepare for slave link (bnc#441420). +- patches.drivers/libata-reimplement-link-iterator: libata: + reimplement link iterator (bnc#441420). +- patches.drivers/libata-set-device-class-to-NONE-if-phys_offline: + libata: set device class to NONE if phys_offline (bnc#441420). +- patches.drivers/libata-transfer-EHI-control-flags-to-slave-ehc.i: + libata: transfer EHI control flags to slave ehc.i (bnc#441420). +* Wed Nov 05 2008 gregkh@suse.de +- Update to 2.6.27.5-rc1: + - fixes lots of things, including a few CVE entries + - obsoletes, and caused to be deleted: + - patches.arch/ppc-pseries_16g-numa.patch + - patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + - patches.arch/ppc-pseries_mem-limit-16g.patch + - patches.arch/s390-02-02-smp-sysdev.patch + - patches.drivers/alsa-hda-reboot-notifier + - patches.drivers/libata-sata_nv-hardreset-fix + - patches.fixes/acpi-clear-wake-status.patch + - patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch + - patches.suse/file-capabilities-add-no_file_caps-switch.diff + - patches.suse/file-capabilities-turn-on-by-default.diff +- Update config files. +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/bnx2-Add-bnx2_shutdown_chip: bnx2: Add + bnx2_shutdown_chip() +- patches.drivers/bnx2-check-running.patch: Check netif_running + in most ethtool operations (bnc#440052) +* Wed Nov 05 2008 kkeil@suse.de +- patches.drivers/ixgbe-copper_pond.patch: ixgbe: add device + support for 82598AT (copper 10GbE) adapters (bnc#441471) +* Tue Nov 04 2008 tonyj@suse.de +- patches.rt/fork_init_nrcpus.patch: Fix oops in fork_init. +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: fix typo +* Tue Nov 04 2008 rw@suse.de +- patches.drivers/bnx2x-zero-PMF: + bnx2x: Removing the PMF indication when unloading. (bnc#439679) +* Tue Nov 04 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: make also -base and -extra x86 + subpackages not installable on x86_64 +* Tue Nov 04 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-3-v2.patch: (kernel):FCP - + Performance Data colletion & analysis patch update (bnc#417243). +- patches.arch/s390-01-04-fcpperf-3.patch: Removed for update +* Tue Nov 04 2008 miklos@szeredi.hu +- patches.apparmor/d_namespace_path_oops_fix.diff: fix oops in + d_namespace_path (bnc#433504). +* Tue Nov 04 2008 hare@suse.de +- patches.fixes/scsi-skip-nonscsi-device-for-dma: scsi_lib_dma.c : + fix bug w/ dma on virtual fc ports (bnc#431294). +* Tue Nov 04 2008 sdietrich@suse.de +- Update RT config files: Enable CONFIG_NO_HZ on i386/rt_debug. + - Refresh config files. +* Tue Nov 04 2008 teheo@suse.de +- patches.drivers/libata-fix-last_reset-timestamp-handling: + libata: fix last_reset timestamp handling (bnc#441340). +* Tue Nov 04 2008 hare@suse.de +- patches.drivers/qla2xxx-8.02.01-k9-update: Update qla2xxx to + 8.02.01-k9 (bnc#439208). +* Tue Nov 04 2008 gregkh@suse.de +- refresh patches to apply cleanly. +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Compile fix. +* Mon Nov 03 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy-fixes: ALSA: emu10k1 - + Add more invert_shared_spdif flag to Audigy models (bnc#440862). +- patches.drivers/alsa-hda-alc269-fsc-amilo: ALSA: hda - Add + ALC269 fujitsu model (bnc#440626). +* Mon Nov 03 2008 jeffm@suse.de +- patches.suse/dm-raid45_2.6.27_20081027.patch: Update dmraid45. +* Mon Nov 03 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Fix dm table + ref count (FATE#304489). +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach (bnc#440980). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-dont-restore-DET-on-detach: libata: + mask off DET when restoring SControl for detach. +* Mon Nov 03 2008 olh@suse.de +- add patches.arch/ppc-clock_gettime-nanoseconds.patch + update also nanoseconds (bnc#439908 - LTC49499) +* Mon Nov 03 2008 teheo@suse.de +- scripts/vc: s/GIT_COMMITER_EMAIL/GIT_COMMITTER_EMAIL and add + SUSE_COMMITTER_EMAIL. +* Mon Nov 03 2008 teheo@suse.de + BNC reference added. +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression (bnc#429344). +* Mon Nov 03 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-hardreset-fix: sata_nv: fix + generic, nf2/3 detection regression. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: enable more lock debugging, + latency features, make x86_64 and i386 consistent. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/kprobes_make_pointer_decl_consistent.patch: Make + kprobe locking consistent with lock-type declarations +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: + Use raw_smp_processor_id in __mem_cgroup_stat_add_safe. +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/mem_cgroup_charge_statistics-smp_processor_id.patch: +* Sun Nov 02 2008 sdietrich@suse.de +- patches.rt/workqueue-introduce-create_rt_workqueue.patch: + workqueue: introduce create_rt_workqueue. (from 2.6.28) + Refresh to eliminate fuzz: + - patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +* Sun Nov 02 2008 sdietrich@suse.de +- Update RT config files: + - Sync with SLES 11 default/debug configs + - Limit CPUS to 32 + - Disable CONFIG_RADIX_TREE_CONCURRENT + - Disable CONFIG_RADIX_TREE_OPTIMISTIC + - Disable CONFIG_PREEMPT_RCU_BOOST + - Enable CONFIG_RTMUTEX_CHECK +- Adapt RT patches to changes made by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/mitigate-resched-flood-update.patch: Update + smp_send_reschedule_allbutself_cpumask mask parameter. + - patches.rt/x86-nmi-send_IPI_mask-pointer-fix.patch: Update + smp_send_nmi_allbutself mask parameter. + Resolve conflicts introduced by: + x86_sgi_cpus4096-05-update-send_IPI_mask.patch + - patches.rt/nmi-profiling-base.patch + - patches.rt/send-nmi-all-preempt-disable.patch + Refresh to eliminate fuzz +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +* Sat Nov 01 2008 bwalle@suse.de +- patches.fixes/kdb-fix-stack-overflow.patch: + kdb: fix stack overflow for large NR_CPUS count (bnc#440361). +* Fri Oct 31 2008 trenn@suse.de + Fate 304268 and 304266. SGI scir driver (replaces the more intrusive + leds one) and the rather intrusive x86_64 4096 CPU support patches: +- Update config files. +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +- patches.arch/x86_sgi-uv-scir.patch: SGI X86 UV: Provide a + System Activity Indicator driver (FATE304268 bnc#426066). +- patches.arch/x86_sgi_cpus4096-01-fix-smp_call_function.patch: + smp: reduce stack requirements for smp_call_function_mask + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-02-fix-send_call_func_ip.patch: + x86: reduce stack requirements for send_call_func_ipi + (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-05-update-send_IPI_mask.patch: + x86 cpumask: Updates to support NR_CPUS=4096 (bnc#425240 + FATE304266). +- patches.arch/x86_sgi_cpus4096-06-optimize-cpumask-in-sched_c.patch: + Additional cpumask fixups (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-04-add-for_each_cpu_mask_and.patch: + Add for_each_cpu_mask_and (bnc#425240 FATE304266). +- patches.arch/x86_sgi_cpus4096-07_pae_compile_fixups.patch: + more cpumask cleanups for previous (x86_sgi_cpu4096..) patches + (Additional cpumask fixups). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc8-x86-1 (FATE#303971). +- patches.xen/xen3-patch-2.6.27: Linux: Update to 2.6.27. +- patches.xen/x86_sgi_xen-x86-cpus4096.patch: x86 cpumask xen: + Updates to support NR_CPUS=4096 (Additional cpumask fixups). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-alc269-dmic: ALSA: hda - + Add digital-mic for ALC269 auto-probe mode (bnc#440626). +- patches.drivers/alsa-hda-realtek-mic-automute-fix: ALSA: hda - + Disable broken mic auto-muting in Realtek codes (bnc#440626). +* Fri Oct 31 2008 hare@suse.de +- Update config files. +- patches.drivers/cxgb3i: add cxgb3i iscsi driver + (FATE#304154,bnc#433500). +- patches.drivers/cxgb3-private-iscsi-ip-addresses: cxgb3 - + manage private iSCSI IP addresses (FATE#304154,bnc#433500). +- patches.drivers/open-iscsi-offloading-support: support for iscsi + pdu digest offload and payload DDP. (FATE#304154,bnc#433500). +- patches.fixes/cxgb3-remove-duplicate-tests-in-lro: cxgb3 - + remove duplicate tests in lro (FATE#304154, bnc#430538). +- supported.conf: Mark cxgb3i as supported. +* Fri Oct 31 2008 bwalle@suse.de +- patches.suse/kdb-resolve-uv-conflict.diff: + Resolve KDB conflicts with UV (bnc#440376). +* Fri Oct 31 2008 tiwai@suse.de +- patches.drivers/alsa-hda-sigmatel-spdif-fix: ALSA: hda - + Fix SPDIF mute on IDT/STAC codecs. +- patches.drivers/alsa-hda-reboot-notifier: ALSA: hda - Add + reboot notifier. +* Fri Oct 31 2008 jack@suse.cz +- patches.suse/ocfs2-Fix-mount-cleanup-after-quota-failure.patch: + ocfs2: Fix mount cleanup after quota failure (fate#302681). +- patches.suse/ocfs2-Fix-oop-in-recovery-without-quotas: + ocfs2: Fix recovery of nodes when quota feature is disabled + (fate#302681). +- patches.suse/ocfs2-Fix-grace-time-syncing.patch: ocfs2: Fix + grace time syncing (fate#302681). +* Fri Oct 31 2008 teheo@suse.de +- patches.drivers/block-del-timer-after-dequeue: blk: move + blk_delete_timer call in end_that_request_last (bnc#440076 + bnc#440173). +* Fri Oct 31 2008 trenn@suse.de +- patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Avoid oops + on G33 in 1MB stolen Mem case (bnc#391261). +* Thu Oct 30 2008 gregkh@suse.de +- patches.fixes/agp-fix-stolen-memory-counting-on-g4x.patch: + agp: Fix stolen memory counting on G4X. (bnc#437618). +* Thu Oct 30 2008 oneukum@suse.de +- patches.fixes/sd_liberal_28_sense_invalid.diff: fix medium + presence misdetection in usb storage device (bnc#362850). +* Thu Oct 30 2008 olh@suse.de +- add patches.fixes/scsi-ibmvscsi-show-config.patch + use 4k buffer to transfer config data (439970 - LTC49349) +* Thu Oct 30 2008 teheo@suse.de +- patches.drivers/block-add-timeout-on-dequeue: block: add timer + on blkdev_dequeue_request() not elv_next_request() (bnc#440076). +* Wed Oct 29 2008 sdietrich@suse.de + Refresh RT patches: +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT (debug + builds). +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/partreadd-lttng-instrumentation-irq.patch: readd + RT compatible version of lttng-instrumentation-irq. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/start_irq_thread.patch: Linux-RT 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +* Wed Oct 29 2008 gregkh@suse.de +- s/rtl2860/rt2860/ +- remove driver from the Xen build as it's dying for some reason. +- add obsoletes for ralink-rt2860-kmp +* Wed Oct 29 2008 olh@suse.de +- update patches.arch/ppc-oprofile-spu.patch + add missing ARRAY_SIZE(pm_signal_local) +* Wed Oct 29 2008 hare@suse.de +- patches.arch/s390-symmetrix-ioctl.patch: Add ioctl support + for EMC Symmetrix Subsystem Control I/O (bnc#439221) +* Wed Oct 29 2008 jbeulich@suse.de +- patches.xen/xen-rtl2860-build: fix issue with Windows-style + types used in rtl2680. +* Wed Oct 29 2008 olh@suse.de +- build af_packet as a module on powerpc (bnc#433540) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu-mutex-locking.patch + Fix mutex locking for cell spu-oprofile (bnc#422501 - LTC47617) +* Wed Oct 29 2008 olh@suse.de +- add patches.arch/ppc-oprofile-spu.patch + fix local array size in activate spu profiling function (bnc#439553 - LTC48925) +* Wed Oct 29 2008 olh@suse.de +- update patches.drivers/ehea.patch + Add hugepage detection (bnc#439599 - LTC48958) +* Wed Oct 29 2008 gregkh@suse.de +- patches.drivers/staging-add-agnx-wireless-driver.patch: Staging: + add agnx wireless driver. +- patches.drivers/staging-add-otus-atheros-wireless-network-driver.patch: + Staging: add otus Atheros wireless network driver. +- patches.drivers/staging-add-rtl2860-wireless-driver.patch: + Staging: add rtl2860 wireless driver (bnc#437959). +- Update config files. +* Tue Oct 28 2008 jkosina@suse.de +- patches.suse/silent-stack-overflow-2.patch: disabled, as it + causes kernel hangs triggered by grub (bnc#439448). +* Tue Oct 28 2008 kkeil@suse.de +- update patches.suse/SoN-17-net-ps_rx.patch + fix i/o corruption on rx in ixgbe (bnc#438929) +* Tue Oct 28 2008 jdelvare@suse.de +- config/powerpc/*: Fixup configuration files after last change. +* Tue Oct 28 2008 jdelvare@suse.de +- config/*: Include many multimedia drivers which has been dropped + accidentally. This includes the pwc, ivtv, zr36067 drivers and + many old webcam drivers (bnc#439489). +- supported.conf: Add all these drivers again. +* Tue Oct 28 2008 tiwai@suse.de +- patches.drivers/alsa-hda-analog-update, + patches.drivers/alsa-hda-atihdmi-update, + patches.drivers/alsa-hda-beep, + patches.drivers/alsa-hda-hp-mobile-fix, + patches.drivers/alsa-hda-nvidia-hdmi, + patches.drivers/alsa-hda-probe-fix, + patches.drivers/alsa-hda-proc-fix, + patches.drivers/alsa-hda-realtek-update, + patches.drivers/alsa-hda-sigmatel-update, + patches.drivers/alsa-hda-spdif-slave, + patches.drivers/alsa-hda-via-rec-fix, + patches.drivers/alsa-hda-via-update: + ALSA updates, mostly taken from 2.6.28-rc1 patches +- Update config files. +* Tue Oct 28 2008 jdelvare@suse.de +- Actually CONFIG_SND_HDA_HWDEP is a boolean, sorry. +* Tue Oct 28 2008 jdelvare@suse.de +- config/ia64/vanilla, config/x86_64/vanilla: fix configuration + discrepancy, CONFIG_SND_HDA_HWDEP=m. +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-pcibios_allocate_bus_resources.patch + add patches.arch/ppc-powerpc-debug-pci-hotplug.patch + fix DLPAR on pseries (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- add patches.arch/ppc-powerpc-fix-pci-unmap-io.patch + Fix unmapping of IO space on 64-bit (bnc#439491 - LTC48584) +* Tue Oct 28 2008 olh@suse.de +- update ps3 config, remove unneeded options to reduce vmlinux size +* Tue Oct 28 2008 neilb@suse.de +- patches.suse/md-notify-when-stopped: md: notify udev when an + md array is stopped. (fate#303894). +* Tue Oct 28 2008 gregkh@suse.de +- use the panasonic laptop driver that was accepted by upstream, not the + pcc-acpi driver, which was rejected: + - patches.drivers/staging-add-pcc-acpi-driver.patch: Delete. + - patches.drivers/panasonic-laptop-add-panasonic-let-s-note-laptop-extras-driver-v0.94.patch: + panasonic-laptop: add Panasonic Let's Note laptop extras + driver v0.94. +- Update config files. +* Tue Oct 28 2008 gregkh@suse.de +- patches.drivers/via-framebuffer-driver.patch: Via Framebuffer + driver. +- Update config files. +* Mon Oct 27 2008 bwalle@suse.de +- patches.fixes/hpwdt-kdump.diff: + Don't change permission of sysfs file (did that accidentally + when changing the default value). +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Fri Oct 24 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works +* Fri Oct 24 2008 jack@suse.cz +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). - fixed 64-bit division +* Fri Oct 24 2008 jeffm@suse.de +- Update config files for -rt. +* Fri Oct 24 2008 hare@suse.de +- patches.suse/cgroup-freezer.patch: Add TIF_FREEZE for s390. +* Fri Oct 24 2008 olh@suse.de +- move patches.suse/md-raid-metadata-PAGE_SIZE.patch + to patches.kernel.org/md-raid-metadata-PAGE_SIZE.patch + to allow raid0 with 64k PAGE_SIZE +* Fri Oct 24 2008 jack@suse.cz +- Update config files. +- supported.conf: Added new quota module +- patches.suse/xfs-dmapi-enable: Enable XFS DMAPI. - Refreshed + Quotas for OCFS2: +- patches.suse/quota-Add-callbacks-for-allocating-and-destroying-d.patch: + quota: Add callbacks for allocating and destroying dquot + structures (fate#302681). +- patches.suse/quota-Increase-size-of-variables-for-limits-and-ino.patch: + quota: Increase size of variables for limits and inode usage + (fate#302681). +- patches.suse/quota-Remove-bogus-optimization-in-check_idq-an.patch: + quota: Remove bogus 'optimization' in check_idq() and + check_bdq() (fate#302681). +- patches.suse/quota-Make-_SUSPENDED-just-a-flag.patch: quota: + Make _SUSPENDED just a flag (fate#302681). +- patches.suse/quota-Allow-to-separately-enable-quota-accounting-a.patch: + quota: Allow to separately enable quota accounting and enforcing + limits (fate#302681). +- patches.suse/ext3-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext3: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/ext4-Use-sb_any_quota_loaded-instead-of-sb_any_qu.patch: + ext4: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled() (fate#302681). +- patches.suse/reiserfs-Use-sb_any_quota_loaded-instead-of-sb_an.patch: + reiserfs: Use sb_any_quota_loaded() instead of + sb_any_quota_enabled(). (fate#302681). +- patches.suse/quota-Remove-compatibility-function-sb_any_quota_en.patch: + quota: Remove compatibility function sb_any_quota_enabled() + (fate#302681). +- patches.suse/quota-Introduce-DQUOT_QUOTA_SYS_FILE-flag.patch: + quota: Introduce DQUOT_QUOTA_SYS_FILE flag (fate#302681). +- patches.suse/quota-Move-quotaio_v-12-.h-from-include-linux-to-f.patch: + quota: Move quotaio_v[12].h from include/linux/ to fs/ + (fate#302681). +- patches.suse/quota-Split-off-quota-tree-handling-into-a-separate.patch: + quota: Split off quota tree handling into a separate file + (fate#302681). +- patches.suse/quota-Convert-union-in-mem_dqinfo-to-a-pointer.patch: + quota: Convert union in mem_dqinfo to a pointer (fate#302681). +- patches.suse/quota-Allow-negative-usage-of-space-and-inodes.patch: + quota: Allow negative usage of space and inodes (fate#302681). +- patches.suse/quota-Keep-which-entries-were-set-by-SETQUOTA-quota.patch: + quota: Keep which entries were set by SETQUOTA quotactl + (fate#302681). +- patches.suse/quota-Add-helpers-to-allow-ocfs2-specific-quota-ini.patch: + quota: Add helpers to allow ocfs2 specific quota initialization, + freeing and recovery (fate#302681). +- patches.suse/quota-Implement-function-for-scanning-active-dquots.patch: + quota: Implement function for scanning active dquots + (fate#302681). +- patches.suse/ocfs2-Fix-check-of-return-value-of-ocfs2_start_tran.patch: + ocfs2: Fix check of return value of ocfs2_start_trans() + (fate#302681). +- patches.suse/ocfs2-Support-nested-transactions.patch: ocfs2: + Support nested transactions (fate#302681). +- patches.suse/ocfs2-Fix-checking-of-return-value-of-new_inode.patch: + ocfs2: Fix checking of return value of new_inode() + (fate#302681). +- patches.suse/ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_.patch: + ocfs2: Let inode be really deleted when ocfs2_mknod_locked() + fails (fate#302681). +- patches.suse/ocfs2-Assign-feature-bits-and-system-inodes-to-quot.patch: + ocfs2: Assign feature bits and system inodes to quota feature + and quota files (fate#302681). +- patches.suse/ocfs2-Mark-system-files-as-not-subject-to-quota-acc.patch: + ocfs2: Mark system files as not subject to quota accounting + (fate#302681). +- patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: + ocfs2: Implementation of local and global quota file handling + (fate#302681). +- patches.suse/ocfs2-Add-quota-calls-for-allocation-and-freeing-of.patch: + ocfs2: Add quota calls for allocation and freeing of inodes + and space (fate#302681). +- patches.suse/ocfs2-Enable-quota-accounting-on-mount-disable-on.patch: + ocfs2: Enable quota accounting on mount, disable on umount + (fate#302681). +- patches.suse/ocfs2-Implement-quota-syncing-thread.patch: ocfs2: + Implement quota syncing thread (fate#302681). +- patches.suse/ocfs2-Implement-quota-recovery.patch: ocfs2: + Implement quota recovery (fate#302681). +* Fri Oct 24 2008 kkeil@suse.de +- patches.fixes/cxgb3_fix_race_in_EEH: cxgb3: fix race in EEH. + (bnc#430093) +* Fri Oct 24 2008 jeffm@suse.de +- Refreshed context for -RT patches so they apply again. +* Fri Oct 24 2008 rw@suse.de +- patches.drivers/sgi-ioc4-request-submodules: + Make ioc4 request dependant modules. (bnc#429215) +* Fri Oct 24 2008 hare@suse.de +- Update config files: Disable FAIL_MAKE_REQUEST. +* Fri Oct 24 2008 tiwai@suse.de +- patches.drivers/alsa-usb-exclude-1st-slot: Delete this old ugly + workaround patch. +* Fri Oct 24 2008 hare@suse.de +- Include patches from upstream: + - patches.fixes/block-use-bio_has_data: Implement bio_has_data(). + - patches.fixes/block-git-fixes: Block layer fixes for 2.6.28. + - patches.fixes/block-rq-affinity: Implement rq affinity. + - patches.fixes/dm-mpath-remove-is_active: dm mpath: remove + is_active from struct dm_path. + - patches.fixes/block-discard-requests: Implement block discard. + - patches.drivers/dm-abort-queue-on-failed-paths: dm: Call + blk_abort_queue on failed paths (bnc#417544). + - patches.drivers/block-call-sync-on-cleanup: block: + blk_cleanup_queue() should call blk_sync_queue(). +- Refaktor and update request-based multipath patches: + - patches.drivers/blk-request-based-multipath-update: + Update request-based multipathing patches to upstream version + (bnc#434105). + - patches.suse/rq-based-multipath: Update to latest version + of request-based multipathing patchset (bnc#434105) + - patches.drivers/block-abort-request-rq-complete-marking: + use rq complete marking in blk_abort_request (bnc#434105). + - patches.fixes/scsi-atomic-blk-timer-deletes: Delete. + - patches.fixes/dm-mpath-abort-queue: Delete. + - patches.suse/rq-based-block-layer: Delete. + - patches.suse/rq-based-dm-interface: Delete. + - patches.suse/rq-based-multipath-functions: Delete. + - patches.suse/rq-based-init-crash: Delete. +- Update patches to upstream version: + - patches.drivers/bdev-resize-check-for-device-resize + - patches.drivers/bdev-resize-added-flush_disk + - patches.drivers/bdev-resize-call-flush_disk + - patches.drivers/bdev-resize-sd-driver-calls + - patches.drivers/block-timeout-handling + - patches.drivers/bdev-resize-adjust-block-device-size + - patches.drivers/bdev-resize-wrapper-for-revalidate_disk + - patches.drivers/block-abort-queue + - patches.fixes/scsi-enhance-error-codes +- Rediff patches: + - patches.fixes/scsi-misc-git-update + - patches.suse/dm-barrier-single-device + - patches.suse/kdb-common + - patches.drivers/lpfc-8.2.8-update + - patches.drivers/lpfc-8.2.8.3-update + - patches.drivers/mpt-fusion-4.00.43.00-update +* Fri Oct 24 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: Add sysctl also + to kernel/sysctl_check.c. +* Fri Oct 24 2008 bwalle@suse.de +- Obsolete uvcvideo-kmp. +* Fri Oct 24 2008 jbeulich@suse.de +- rpm/kernel-binary.spec.in: Provide 'kernel' also for Xen (bnc#362918). +* Fri Oct 24 2008 jbeulich@suse.de +- patches.arch/x86_64-unwind-annotations: fix unwind annotations. +- patches.xen/xen3-x86_64-unwind-annotations: fix unwind + annotations. +* Fri Oct 24 2008 jbeulich@suse.de +- Update Xen patches to 2.6.27.3 and c/s 704 +- patches.xen/xen3-x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.xen/xen3-x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.xen/xen-kconfig-compat-3.2.0: add 3.2.0-compatibility + configure option. +- patches.xen/xen-x86-exit-mmap: be more aggressive about + de-activating mm-s under destruction. +- patches.xen/xen-x86-machphys-prediction: properly predict + phys<->mach translations. +- patches.xen/xen-x86-mmu-batching: utilize + arch_{enter,leave}_lazy_cpu_mode(). +- patches.xen/xen-x86-no-lazy-tlb: ensure inadvertent uses of + lazy TLB data are caught during the build. +- Update Xen config files. +* Fri Oct 24 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: + - do not split kernel-kdump into -base and -extra + - fix case when a build results in no unsupported modules +* Fri Oct 24 2008 bwalle@suse.de +- patches.fixes/kdb-kdump.diff: + Fix CONFIG_KDB_KDUMP on xSeries (bnc#436454). +* Fri Oct 24 2008 agruen@suse.de +- supported.conf: Mark dmapi as supported (by SGI). +* Fri Oct 24 2008 olh@suse.de +- disable all unsupported drivers in kernel-kdump +* Fri Oct 24 2008 npiggin@suse.de +- patches.suse/silent-stack-overflow-2.patch: avoid silent stack + overflow over the heap (bnc#44807 bnc#211997). +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc2 +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_SYSFS_DEPRECATED_V2 from powerpc/rt config file +* Fri Oct 24 2008 gregkh@suse.de +- Update to 2.6.27.4-rc1 + - lots of bugfixes, and obsoletes some current patches: + - patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: Delete. + - patches.fixes/wdm_autoload.diff: Delete. +* Fri Oct 24 2008 npiggin@suse.de +- Fix ppc and ps3 configs +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. +- patches.suse/cgroup-freezer.patch: cgroup freezer (bnc#417294, + fate#304191, fate#201036). +* Fri Oct 24 2008 npiggin@suse.de +- Update config files. Enable cgroups for all archs (bnc#417527) +* Fri Oct 24 2008 npiggin@suse.de +- patches.arch/ppc-gigantic-page-fix2.patch: powerpc gigantic + pages fix 2 (bnc#434026). +- patches.arch/ppc-gigantic-page-fix3.patch: powerpc gigantic + pages fix 3 (bnc#434026). +- patches.trace/lttng-instrumentation-hugetlb.patch: de-fuzz +* Fri Oct 24 2008 gregkh@suse.de +- disabled CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64 + vanilla kernel. +* Fri Oct 24 2008 gregkh@suse.de +- patches.drivers/cciss-fix-procfs-firmware-regression.patch: + cciss: fix procfs firmware regression (bnc435644). +- patches.drivers/cciss-fix-sysfs-symlink.patch: cciss: fix + sysfs symlink (bnc435644). +* Fri Oct 24 2008 gregkh@suse.de +- disable CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT on x86-64. To use + Calgary iommu systems, you now must manually pass "iommu=calgary" to + get this hardware support back enabled. This is the recommended + proceedure right now, from IBM, otherwise the hardware crashes. + bnc#436450. +* Fri Oct 24 2008 gregkh@suse.de +- clean up all fuzz in patches to get them to apply cleanly. +* Fri Oct 24 2008 gregkh@suse.de +- delete patches.arch/s390-01-03-cmm2-v2.patch as it touched core + kernel code and was rejected from upstream. + - patches.arch/s390-01-03-cmm2-v2.patch: Delete. + - patches.arch/s390-01-03-cmm2-v2a.patch: Delete. +* Fri Oct 24 2008 gregkh@suse.de +- Update to version 3.4 of squashfs: + - patches.suse/squashfs3.3-patch: Delete. + - patches.suse/squashfs-patch-2.6.25: Delete. + - patches.suse/squashfs-patch-2.6.27: Delete. + - patches.suse/squashfs-3.4.patch: squashfs v3.4. +* Thu Oct 23 2008 jeffm@suse.de +- patches.fixes/block-sanitize-invalid-partition-table-entries: + block: sanitize invalid partition table entries (bnc#371657). +* Thu Oct 23 2008 olh@suse.de +- add patches.arch/ppc-pseries_mem-limit-16g.patch + Don't use a 16G page if beyond mem= limits (bnc#438111 - LTC49329) +* Thu Oct 23 2008 kkeil@suse.de +- Update x86 64bit config files to include WAN support (bnc#437692) +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/cell_edac.patch + Fix incorrect edac_mode in csrow causing oops (bnc#437757 - LTC49143) +* Thu Oct 23 2008 olh@suse.de +- update patches.suse/nameif-track-rename.patch + print also application and pid +* Thu Oct 23 2008 jkosina@suse.de +- patches.fixes/hid-rdesc-quirk-for-sony-vaio-VGX-TP1E.patch: + HID: Fix Sony Vaio VGX report descriptor (bnc#437758). +* Thu Oct 23 2008 olh@suse.de +- add patches.drivers/ehca-rejecting-dynamic-mem-add-remove.patch + reject dynamic memory add/remove (bnc#434651 - LTC48744) +* Thu Oct 23 2008 npiggin@suse.de +- Update config files. +* Thu Oct 23 2008 npiggin@suse.de +- patches.suse/x86-gb-linear-map.patch: Enable GB mapped linear + KVA on x86 (bnc#437674). +- patches.xen/xen3-patch-2.6.26: merge +* Thu Oct 23 2008 gregkh@suse.de +- update to 2.6.27.3 + - lots of bugfixes + - CVE-2008-3831 fix +* Wed Oct 22 2008 jeffm@suse.de +- scripts/vc: Handle unset $EDITOR +* Wed Oct 22 2008 jeffm@suse.de +- patches.suse/export-release_open_intent: Export + release_open_intent for NFS branches with aufs. +* Wed Oct 22 2008 jdelvare@suse.de +- supported.conf: Mark the ibmaem and ibmpex hwmon drivers as + supported by IBM. +- supported.conf: Mark the i5k_amb hwmon driver as supported. +* Wed Oct 22 2008 olh@suse.de +- add patches.drivers/ehea.patch + Fix memory hotplug support (436447 - LTC48713) +* Wed Oct 22 2008 olh@suse.de +- add patches.arch/ppc-pseries_hugepage_pagetable_allocation.patch + Cleanup hugepage pagetable allocation (bnc# 433503 - LTC48757) +* Wed Oct 22 2008 sassmann@suse.de + Add PS3 audio patches: +- patches.arch/ppc-ps3-add-passthrough-support-for-non-audio-streams.patch: + ps3: Add passthrough support for non-audio streams. +- patches.arch/ppc-ps3-add-ps3av-audio-mute-analog.patch: + ps3: Add ps3av_audio_mute_analog(). +- patches.arch/ppc-ps3-add-support-for-SPDIF-HDMI-passthrough.patch: + ps3: Add support for SPDIF/HDMI passthrough. +* Tue Oct 21 2008 sdietrich@suse.de +- patches.rt/genirq-usb.patch: Make status_cache u32 +- patches.rt/genirq-ohci1394.patch: Enable ohci1394 IRQ + threading. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: rediff. +- patches.fixes/scsi-atomic-blk-timer-deletes: scsi: atomic blk + timer deletes (LTC#48990, bnc#434105). +- patches.suse/rq-based-block-layer: rq-based multipathing: + rediff. +* Tue Oct 21 2008 hare@suse.de +- patches.fixes/scsi-inquiry-too-short-ratelimit: INQUIRY result + too short (5) message flood (bnc#432535). +* Tue Oct 21 2008 npiggin@suse.de +- patches.suse/filp-slab-rcu: Delete. +* Tue Oct 21 2008 sdietrich@suse.de + USB IRQ threading (experimental: guarded by genirq): +- patches.rt/genirq1-make-irqreturn_t-an-enum: genirq: make + irqreturn_t an enum. +- patches.rt/genirq2-add-quick-check-handler.patch: genirq: + add a quick check handler. +- patches.rt/genirq3-add-threaded-irq-handler-support: genirq: + add threaded interrupt handler support. +- patches.rt/genirq4-add-helper-to-check-whether-irq-thread-should-run: + genirq: add a helper to check whether the irqthread should run. +- patches.rt/genirq5-make-irq-threading-robust: genirq: make + irq threading robust. +- patches.rt/genirq-usb.patch: genirq threading for ehci, ohci + and uhci USB hosts.. +- patches.rt/genirq-wlan-ng-compat.patch: Remove redundant, + obsolete 2.4 compatibility code in wlan-ng. + Ack: +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +* Mon Oct 20 2008 gregkh@suse.de +- patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: + x86: mach_apicdef.h need to include before smp.h. + fixes build error on i386 pae kernels. +* Mon Oct 20 2008 bwalle@suse.de +- patches.suse/kdump-dump_after_notifier.patch: + Add dump_after_notifier sysctl (bnc#436678). +* Mon Oct 20 2008 gregkh@suse.de +- scripts/wd-functions.sh: reverse git and cvs checks (check for + cvs before git). This solves the problem if you are using a cvs + tree, yet it happens to live in a directory that way up the + directory chain is in a git tree (like for people who keep portions + of their $HOME in git). +* Mon Oct 20 2008 gregkh@suse.de +- Update config files: enable CONFIG_GENERICARCH and CONFIG_BIGSMP + on i386-pae kernels. (bnc#428247) +* Mon Oct 20 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: fix the order of arguments in + /proc/$pid/syscall on x86_64. +* Mon Oct 20 2008 bwalle@suse.de +- Update config files: Enable CONFIG_KVM_KMP for RT config, run + oldconfig. +* Mon Oct 20 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: Correct to reflect mainline + state. +* Mon Oct 20 2008 hare@suse.de +- Update config files. +- patches.suse/kvm-as-kmp: Allow KVM to be built as KMP + (FATE#303679). +* Mon Oct 20 2008 jjolly@suse.de +- patches.arch/s390-01-05-kmsg-v2.patch: Instrument the kernel + components such that a kernel message catalog as well as related + man pages can be automatically generated. (bnc#417300) +- patches.arch/s390-01-06-zfcp-cleanup-v2.patch: Update patch to + fit on recent kmsg patch changes. (bnc#417550) +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + Update patch to fit on recent kmsg patch changes. +- config/s390/{default,s390}: Added CONFIG_KMSG_IDS=y +* Mon Oct 20 2008 bwalle@suse.de +- supported.conf: Mark 'crasher' as supported to avoid installing + the "extra" package only for that module. +* Mon Oct 20 2008 olh@suse.de +- add patches.arch/ppc-pseries_16g-numa.patch + fix crash with more 2 numa nodes and 16G hugepage (bnc#436452 - LTC48839) +* Sat Oct 18 2008 gregkh@suse.de +- Update to 2.6.27.2. + - lots of bugfixes +* Sat Oct 18 2008 tonyj@suse.de +- patches.rt/fix-preempt-none.patch: Fix preempt-none build + errors +* Fri Oct 17 2008 jeffm@suse.de +- patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix + initialization of ipv4_route_lock (bnc#435994). +* Fri Oct 17 2008 kkeil@suse.de +- patches.drivers/tg3-Add-57780-ASIC-revision.patch: tg3: Add + 57780 ASIC revision. (bnc#434147) +- patches.drivers/broadcom-Add-support-for-the-57780-integrated-PHY.patch: + broadcom: Add support for the 57780 integrated PHY. (bnc#434147) +- patches.drivers/bnx2x-eeh.patch: bnx2x: EEH recovery fix.(bnc#433875) +* Fri Oct 17 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: Add the auto-generated (by mkdumprd) + kdump initrd to %%ghost so that the file gets removed when + uninstalling the kernel. +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 ACL / security attribute support + - patches.suse/ocfs2-Remove-unused-function-restore_extent_block.patch + - patches.suse/ocfs2-Merge-transactions-during-xattr-set.patch + - patches.suse/ocfs2-xattr.-ch-definition-cleanups.patch + - patches.suse/ocfs2-Add-security-xattr-support-in-ocfs2.patch + - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch +* Fri Oct 17 2008 mfasheh@suse.com +- ocfs2 fixes / updates from 2.6.28 merge window + - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch + - patches.suse/ocfs2-Add-empty-bucket-support-in-xattr.patch + - patches.suse/ocfs2-Remove-pointless.patch + - patches.suse/ocfs2-make-la_debug_mutex-static.patch + - patches.suse/ocfs2-Documentation-update-for-user_xattr-nouser_.patch + - patches.suse/ocfs2-use-smaller-counters-in-ocfs2_remove_xattr_cl.patch + - patches.suse/ocfs2-Don-t-check-for-NULL-before-brelse.patch + - patches.suse/ocfs2-Uninline-ocfs2_xattr_name_hash.patch + - patches.suse/ocfs2-Move-trusted-and-user-attribute-support-into.patch + - patches.suse/ocfs2-Calculate-EA-hash-only-by-its-suffix.patch + - patches.suse/ocfs2-Refactor-xattr-list-and-remove-ocfs2_xattr_ha.patch + - patches.suse/ocfs2-Separate-out-sync-reads-from-ocfs2_read_block.patch + - patches.suse/ocfs2-Require-an-inode-for-ocfs2_read_block-s.patch + - patches.suse/ocfs2-Simplify-ocfs2_read_block.patch + - patches.suse/ocfs2-Move-ocfs2_bread-into-dir.c.patch + - patches.suse/ocfs2-Kill-the-last-naked-wait_on_buffer-for-cach.patch + - patches.suse/ocfs2-Make-cached-block-reads-the-common-case.patch + - patches.suse/ocfs2-fix-build-error.patch +* Thu Oct 16 2008 mfasheh@suse.com +- ocfs2 dynamic local alloc patches +* Thu Oct 16 2008 jslaby@suse.de +- patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around + bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). +- patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm + timeouts to jiffies conversion (bnc#425747 FATE304221). +* Thu Oct 16 2008 ihno@suse.de +- added patches.arch/s390-01-03-cmm2-v2a.patch + fix the sequence of initilisations. +* Thu Oct 16 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Make the kernel-$flavor-extra packages + supplement kernel-$flavor on openSUSE and SLED so that those + packages will get installed by default, using the product(...) + dependencies provided by the *-release packages. +* Thu Oct 16 2008 tonyj@suse.de +- Previous checkin was totally broken wrt rt config files. + Revert to previous versions and incorporate any changes from + run_oldconfig. Sole changes to previous versions is to remove + CONFIG_DYNAMIC_FTRACE from rt_debug configs which is consistent + with change in 2.6.27.1 +* Thu Oct 16 2008 gregkh@suse.de +- Update to 2.6.27.1 + - disables a problem config option, only affected the vanilla, + debug, and rt kernel variants. +* Wed Oct 15 2008 olh@suse.de +- add patches.arch/ppc-pseries_pfn-mem-rm.patch + fix hotplug memory remove (bnc#435181 - LTC48640) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/post.sh, rpm/postun.sh: run weak-modules, depmod and mkinitrd + on older distros (bnc#435246) + Fixed fix for bnc#435104 ("/boot/" was missing in some places) +* Wed Oct 15 2008 mmarek@suse.cz +- rpm/kernel-binary.spec.in: don't recommend the -extra subpackage + (fate#303631) +- rpm/postun.sh, rpm/post.sh: remove the temporary workaround +* Wed Oct 15 2008 olh@suse.de +- drop patches.arch/ppc-iseries-remove-AVAILABLE_VETH.patch + not needed anymore +* Wed Oct 15 2008 nfbrown@suse.de +- patches.fixes/nfs-file-cred-context-null: nfs_file_cred should + cope if 'file' hasn't been opened properly (bnc#431785). +* Wed Oct 15 2008 tonyj@suse.de +- Update RT patches to latest .27 Windriver version (all patches) +- Disable patches.rt/swap-spinlock-fix.patch +- Guard filp-slab-rcu for RT +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-5710-to-nomux.patch: Input: + Add Acer Aspire 5710 to nomux blacklist (bnc#404881). +* Tue Oct 14 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: Delete. + in mainline now. done to the right tree. +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/postun.sh, rpm/post.sh: temporarily ignore errors from + weak-modules2 --{add,remove}-kernel-modules until + module-init-tools has rebuilt +* Tue Oct 14 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Delete. + The patch is already upstream in 2.6.27 +* Tue Oct 14 2008 jeffm@suse.de +- patches.suse/osync-error: Update position after check for -EIO + (bnc#434910). +* Tue Oct 14 2008 npiggin@suse.de +- patches.suse/rlimit-memlock-64k.patch: Increase default + RLIMIT_MEMLOCK to 64k (bnc#329675). +* Tue Oct 14 2008 sjayaraman@suse.de +- Update config files: CIFS_EXPERIMENTAL=y and CIFS_DFS_UPCALL=y + (FATE#303758). +* Tue Oct 14 2008 jbeulich@novell.com +- patches.xen/xen-irq-probe: restrict IRQ probing (bnc#431572). +* Tue Oct 14 2008 ptesarik@suse.cz +- patches.trace/utrace-core: undo overzealous #ifdef's, which + removed too much code in case UTRACE_CONFIG was unset. +* Tue Oct 14 2008 jbeulich@novell.com +- patches.fixes/reiserfs-commit-ids-unsigned-ints: Remove L suffix + from constant compared against. +* Tue Oct 14 2008 olh@suse.de +- call bootloader_entry without leading /boot/ (bnc#435104) +* Tue Oct 14 2008 mmarek@suse.cz +- rpm/kernel-source.spec.in, rpm/source-post.sh, rpm/functions.sh: + kill functions.sh, put the relink() function to source-post.sh + directly +- rpm/postun.sh, rpm/pre.sh, rpm/preun.sh, rpm/post.sh, + rpm/kernel-binary.spec.in: unify generation of the scriptlets, + switch to the new weak-modules2 script +* Tue Oct 14 2008 olh@suse.de +- disable unused ide_platform driver +* Tue Oct 14 2008 jdelvare@suse.de +- supported.conf: Remove i2c-core and i2c-piix4 from base. +* Tue Oct 14 2008 gregkh@suse.de +- supported.conf: remove ide-core and ide-cdrom from base on request + from Tejun. +* Tue Oct 14 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-add-pcc-acpi-driver.patch: Staging: + add pcc-acpi driver. +- rpm/kernel-binary.spec.in: Obsoletes pcc-acpi-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: it's pcc-acpi and it's not obsolete, yet. +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes at76_usb-kmp +* Tue Oct 14 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: obsoletes et131x-kmp, ivtv-kmp, and + ppc-acpi-kmp +* Mon Oct 13 2008 gregkh@suse.de +- Update config files. +- patches.drivers/staging-at76_usb-wireless-driver.patch: staging: + at76_usb wireless driver. +* Mon Oct 13 2008 gregkh@suse.de +- refresh all patches (except xen and rt) to apply cleanly +* Mon Oct 13 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed + driver is now included from the staging tree. +* Mon Oct 13 2008 gregkh@suse.de +- put proper Patch-mainline: markings on staging patches +* Mon Oct 13 2008 gregkh@suse.de +- patches.drivers/staging-workaround-build-system-bug.patch: + Staging: workaround build system bug. +* Mon Oct 13 2008 aj@suse.de +- rpm/post.sh: Fix typo that breaks script. +* Mon Oct 13 2008 gregkh@suse.de +- disabled staging drivers for -rt trees +* Mon Oct 13 2008 gregkh@suse.de +- Add -staging tree: + - added TAINT_CRAP flag + - added eth131x network driver + - added slicoss network driver + - added sgx network driver + - added me4000 data collection driver + - added go7007 video capture driver + - added USB/IP host and client driver + - added w35und wifi network driver + - added prism2 usb wifi network driver + - added echo cancellation driver +- only enabled these on x86 platforms +* Mon Oct 13 2008 jjolly@suse.de +- patches.arch/s390-02-01-xpram.patch: xpram: per device block + request queues (bnc#434333,LTC#49030) +* Mon Oct 13 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Updated supported.conf checker to + eliminate false positives. +* Mon Oct 13 2008 sjayaraman@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning. +* Mon Oct 13 2008 jbenc@suse.cz +- supported.conf: mark drivers/net/wireless/b43* and + driver/net/wireless/rt2x00/* as unsupported because of known + problems we cannot fix. +* Mon Oct 13 2008 oneukum@suse.de +- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to + cdc-wdm driver to compute a proper alias (bnc#433817). +* Mon Oct 13 2008 ptesarik@suse.cz +- Update config files (CONFIG_UTRACE for rt flavours). +* Mon Oct 13 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue. +* Mon Oct 13 2008 ptesarik@suse.cz +- patches.trace/utrace-core: utrace core (FATE#304321). + CONFIG_UTRACE enabled only for kernel-trace. +- Update config files. +* Mon Oct 13 2008 aj@suse.de +- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning. +* Mon Oct 13 2008 sjayaraman@suse.de +- Remove another stale swap-over-nfs patch. + patches.suse/SoN-29-nfs-alloc-recursions.patch: Delete. +* Fri Oct 10 2008 jeffm@suse.de +- Updated to 2.6.27 final. +* Fri Oct 10 2008 tonyj@suse.de +- Update config files +- Fix conflicts, remove most -RT guards added in recent RT update + patches.rt/apic-dumpstack.patch: refresh + patches.rt/preempt-irqs-core.patch: refresh + patches.rt/print-might-sleep-hack.patch: refresh + patches.rt/partrevert-lttng-instrumentation-irq.patch: add + patches.rt/partreadd-lttng-instrumentation-irq.patch: add +- Drop unused RT patches + patches.rt/mips-change-raw-spinlock-type.patch + patches.rt/nmi-watchdog-disable.patch + patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch + patches.rt/lockstat-fix-contention-points.patch + patches.rt/sched-cpupri-priocount.patch + patches.rt/nmi-watchdog-fix-1.patch + patches.rt/cache_pci_find_capability.patch + patches.rt/fix-emac-locking-2.6.16.patch + patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch + patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch + patches.rt/tie-pi-into-task.patch + patches.rt/idle2-fix.patch + patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch + patches.rt/rtmutex-initialize-waiters.patch + patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch + patches.rt/add-generalized-pi-interface.patch + patches.rt/warn-on-rt-scatterlist.patch + patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch + patches.rt/trace-eip2ip.patch + patches.rt/sched_rt-fixup.patch + patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch + patches.rt/trace_hist-latediv.patch + patches.rt/sched-cpupri-hotplug-support.patch + patches.rt/idle-fix.patch + patches.rt/ftrace-fix-get-kprobe-wreckage.patch + patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch + patches.rt/ftrace-function-record-nop.patch + patches.rt/ftrace-document-update1.patch + patches.rt/26-rt1-chirag.patch + patches.rt/trace_hist-divzero.patch + patches.rt/latency-tracing-ppc.patch + patches.rt/rtmutex-defer-pi-until-sleepy.patch + patches.rt/pmtmr-override.patch + patches.rt/sched-prioritize-non-migrating-rt-tasks.patch + patches.rt/rtmutex-use-runtime-init.patch + patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch + patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch + patches.rt/lockdep-lock_set_subclass.patch + patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch + patches.rt/rt-mutex-irq-flags-checking.patch + patches.rt/ftrace-upstream.patch + patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch + patches.rt/ftrace-preempt-trace-check.patch + patches.rt/rtmutex-add_readers.patch + patches.rt/lockdep-avoid-fork-waring.patch + patches.rt/arm-omap-02.patch + patches.rt/fix-acpi-build-weirdness.patch + patches.rt/cycles-to-ns-trace-fix.patch + patches.rt/ftrace-compile-fixes.patch + patches.rt/ftrace-wakeup-rawspinlock.patch + patches.rt/rtmutex-convert-to-libpi.patch + patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch + patches.rt/ftrace-trace-sched.patch +* Fri Oct 10 2008 mfasheh@suse.com +- supported.conf: mark kernel/fs/gfs2 unsupported +* Fri Oct 10 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-cs5530 unsupported due + to sb16 dependancy issues +* Fri Oct 10 2008 jeffm@suse.de +- patches.fixes/account-reserved-pages: Delete. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Updated to build with + CONFIG_MODULES=n. +* Thu Oct 09 2008 jeffm@suse.de +- Updated to 2.6.27-rc9, but still disabled: + - patches.suse/silent-stack-overflow + - patches.xen/xen3-silent-stack-overflow +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: thermal_sys, not thermal_sysfs. +* Thu Oct 09 2008 jeffm@suse.de +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against + 2.6.27-rc9. +* Thu Oct 09 2008 jdelvare@suse.de +- supported.conf: Fix the name of the thermal_sys module. +- config/x86_64/rt_timing: THERMAL_HWMON is a boolean. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, + enabled, and marked supported (bnc#131728 - FATE#182). +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/serial8250_console_write-ier: Delete. +- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark kernel/sound/pci/snd-als4000 unsupported due + to dependancy on isa sb16 driver. +* Thu Oct 09 2008 jeffm@suse.de +- patches.fixes/dont-writeback-fd-bdev-inodes.patch: Delete. +- patches.arch/s390-ccwgroup-attribute-ignore-newline: Delete. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark drivers/net/wan/hdlc_x25 unsupported due to + symbol dependancy tree. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/osync-error: make sure O_SYNC writes properly + return -EIO (bnc#58622). +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-vmcoreinfo.diff: + Add additional symbols to /sys/kernel/vmcoreinfo data for + ppc(64). +* Thu Oct 09 2008 trenn@suse.de +- patches.xen/xen-x2APIC_build_fix.patch: Adopt Xen to x2APIC + patchset (fate#303984 and fate#303948). +- Update config files. + Disable interrupt remapping for Xen -> this is something for + the hypervisor. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y in vanilla configs. +* Thu Oct 09 2008 jeffm@suse.de +- Update config files: THERMAL_HWMON=y; is boolean and enables + functionality in the already modular THERMAL module. +* Thu Oct 09 2008 jeffm@suse.de +- patches.suse/supported-flag-sysfs: Export supported status + via sysfs. +* Thu Oct 09 2008 carnold@novell.com +- Update config files. Disabled the in kernel KVM modules in + preference to using them as KMPs. See also brogers@novell.com +* Thu Oct 09 2008 jeffm@suse.de +- Added a -iu|--ignore-unsupported-deps option to allow builds + with supported.conf problems. +* Thu Oct 09 2008 jdelvare@suse.de +- config/i386/*, config/x86_64/*, config/ia64/*, supported.conf: + Build hwmon and thermal as modules. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark hdlc_ppp unsupported as syncppp is unsupported. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ubifs as unsupported as it relies on mtd/ubi/ +* Thu Oct 09 2008 bwalle@suse.de +- patches.arch/ppc-dynamic-reconfiguration.diff: + powerpc: Add support for dynamic reconfiguration memory in + kexec/kdump kernels (bnc#431492). +* Thu Oct 09 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: package kernel-xen has dependency to + xen (bnc#431215). +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark TPM drivers a supported, as IBM and others + rely on them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: fix a dependancy link with the isa sb driver with + unsupported symbols +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark ieee80122 modules as supported, as other + supported modules need them. +* Thu Oct 09 2008 gregkh@suse.de +- supported.conf: mark all of the mtd drivers as unsupported to fix + the build errors (and to reflect our policy here.) +* Thu Oct 09 2008 bwalle@suse.de +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC to 0 (bnc#429910). +* Thu Oct 09 2008 jdelvare@suse.de +- Don't build the tps65010 driver, it's only used on OMAP at the + moment. +* Thu Oct 09 2008 mmarek@suse.cz +- rpm/built-in-where: make it work with a four-column + Modules.symvers (bnc#433533) +* Thu Oct 09 2008 bwalle@suse.de +- Update KDB to v4.4-2.6.27-rc8. +* Thu Oct 09 2008 olh@suse.de +- disable legacy iseries (bnc#433685 - LTC48946) +* Thu Oct 09 2008 olh@suse.de +- enable battery_pmu on ppc32 +* Thu Oct 09 2008 trenn@suse.de +- supported.conf: + Marked these unsupported: + cpufreq-nforce2 + e_powersaver + gx-suspmod + longhaul + longrun + p4-clockmod + powernow-k6 + powernow-k7 + speedstep-ich + speedstep-smi + Even Via CPUs are exporting cpu freq steps via ACPI and work fine + with acpi-cpufreq. No need to support the old, some are known + broken, drivers. +* Thu Oct 09 2008 olh@suse.de +- add patches.suse/md-raid-metadata-PAGE_SIZE.patch + ignore PAGE_SIZE in md metadata, for raid0 (bnc#429490) +* Thu Oct 09 2008 teheo@suse.de +- patches.xen/xen3-auto-common.diff: minor patch apply fix after + libata-prefer-over-ide. +* Thu Oct 09 2008 teheo@suse.de +- patches.drivers/libata-prefer-over-ide: libata: prefer libata + drivers over ide ones (bnc#433105). +* Wed Oct 08 2008 carnold@novell.com +- patches.xen/xen-op-packet: add support for new operation type + BLKIF_OP_PACKET (fate#300964). +- patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM + specific commands (fate#300964). +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: major update. Lots of new drivers added as this + file hadn't been updated for a lot of kernel revisions. + This should close out a lot of bugs about "unsupported" modules, + like bnc#433541. +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: sorted the file correctly so we can start determining + what we are not supporting easier. +* Wed Oct 08 2008 jeffm@suse.de +- Updated -rt for context against -rc9 and the x2APIC patches: + - patches.rt/new-softirq-code.patch + - patches.rt/preempt-irqs-core.patch + - patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch + - CONFIG_INTR_REMAP=n for now + - patches.rt/preempt-softirqs-core.patch + - patches.rt/rt-slab-new.patch + - patches.rt/slab-irq-nopreempt-fix.patch + - Update config files: NFS_SWAP=n +* Wed Oct 08 2008 trenn@suse.de + x2APIC and interrupt remapping enablement. + Xen needs further work to build again. + Commit ids are from x86 tip git tree: +- patches.arch/x2APIC_fix_section_mismatch.patch: Fix several + section mismatches (none). +- patches.arch/x2APIC_PATCH_01_0f4896665a02b465ddca59a560983b24ec28c64b: + dmar: fix dmar_parse_dev() devices_cnt error condition check + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_01_of_41_e61d98d8dad0048619bb138b0ff996422ffae53b: + x64, x2apic/intr-remap: Intel vt-d, IOMMU code reorganization + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_228324076234ca6a8cd34be89be78022773459f1: + dmar: use list_for_each_entry_safe() in dmar_dev_scope_init() + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_02_of_41_c42d9f32443397aed2d37d37df161392e6a5862f: + x64, x2apic/intr-remap: fix the need for sequential array + allocation of iommus (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_03_3f1fdb3673bb5638fa94186dc391cbc4879590bc: + dmar: initialize the return value in dmar_parse_dev() (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_03_of_41_1886e8a90a580f3ad343f2065c84c1b9e1dac9ef: + x64, x2apic/intr-remap: code re-structuring, to be used by both + DMA and Interrupt remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_f12c73e7fa7ebf9ad6defee2c4fb2664e743e970: + dmar: fix using early fixmap mapping for DMAR table parsing + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_04_of_41_aaa9d1dd63bf89b62f4ea9f46de376ab1a3fbc6c: + x64, x2apic/intr-remap: use CONFIG_DMAR for DMA-remapping + specific code (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9: + x86, lguest: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_caf43bf7c6a55e89b6df5179df434d67e24aa32e: + x86, xen: fix apic_ops build on UP (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_06_of_41_ad3ad3f6a2caebf56869b83b69e23eb9fa5e0ab6: + x64, x2apic/intr-remap: parse ioapic scope under vt-d structures + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_511d9d34183662aada3890883e860b151d707e22: + x86: apic_ops for lguest (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_07_of_41_cf1337f0447e5be8e66daa944f0ea3bcac2b6179: + x64, x2apic/intr-remap: move IOMMU_WAIT_OP() macro to + intel-iommu.h (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_08_of_41_fe962e90cb17a8426e144dee970e77ed789d98ee: + x64, x2apic/intr-remap: Queued invalidation infrastructure + (part of VT-d) (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_09_94a8c3c2437c8946f1b6c8e0b2c560a7db8ed3c6: + x86: let 32bit use apic_ops too - fix (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_09_of_41_2ae21010694e56461a63bfc80e960090ce0a5ed9: + x64, x2apic/intr-remap: Interrupt remapping infrastructure + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_10_of_41_b6fcb33ad6c05f152a672f7c96c1fab006527b80: + x64, x2apic/intr-remap: routines managing Interrupt remapping + table entries. (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_11_of_41_72b1e22dfcad1daca6906148fd956ffe404bb0bc: + x64, x2apic/intr-remap: generic irq migration support from + process context (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_12_of_41_d94d93ca5cc36cd78c532def62772c98fe8ba5d7: + x64, x2apic/intr-remap: 8259 specific mask/unmask routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_13_of_41_4dc2f96cacd1e74c688f94348a3bfd0a980817d5: + x64, x2apic/intr-remap: ioapic routines which deal with initial + io-apic RTE setup (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_14_of_41_0c81c746f9bdbfaafe64322d540c8b7b59c27314: + x64, x2apic/intr-remap: introduce read_apic_id() to genapic + routines (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_15_of_41_2d7a66d02e11af9ab8e16c76d22767e622b4e3d7: + x64, x2apic/intr-remap: Interrupt-remapping and x2apic support, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_16_of_41_1b374e4d6f8b3eb2fcd034fcc24ea8ba1dfde7aa: + x64, x2apic/intr-remap: basic apic ops support (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_17_of_41_32e1d0a0651004f5fe47f85a2a5c725ad579a90c: + x64, x2apic/intr-remap: cpuid bits for x2apic feature (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_18_of_41_1cb11583a6c4ceda7426eb36f7bf0419da8dfbc2: + x64, x2apic/intr-remap: disable DMA-remapping if + Interrupt-remapping is detected (temporary quirk) (fate #303948 + and fate #303984). +- patches.arch/x2APIC_PATCH_19_of_41_13c88fb58d0112d47f7839f24a755715c6218822: + x64, x2apic/intr-remap: x2apic ops for x2apic mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_20_of_41_cff73a6ffaed726780b001937d2a42efde553922: + x64, x2apic/intr-remap: introcude self IPI to genapic routines + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_21_of_41_12a67cf6851871ca8df42025c94f140c303d0f7f: + x64, x2apic/intr-remap: x2apic cluster mode support (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_22_of_41_5c520a6724e912a7e6153b7597192edad6752750: + x64, x2apic/intr-remap: setup init_apic_ldr for UV (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_23_of_41_89027d35aa5b8f45ce0f7fa0911db85b46563da0: + x64, x2apic/intr-remap: IO-APIC support for interrupt-remapping + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_24_of_41_75c46fa61bc5b4ccd20a168ff325c58771248fcd: + x64, x2apic/intr-remap: MSI and MSI-X support for interrupt + remapping infrastructure (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_1_of_41_4c9961d56ec20c27ec5d02e49fd7427748312741: + x86: make read_apic_id return final apicid (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_25_2_of_41_c535b6a1a685eb23f96e2c221777d6c1e05080d5: + x86: let 32bit use apic_ops too (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_25_of_41_6e1cb38a2aef7680975e71f23de187859ee8b158: + x64, x2apic/intr-remap: add x2apic support, including enabling + interrupt-remapping (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_26_of_41_2d9579a124d746a3e0e0ba45e57d80800ee80807: + x64, x2apic/intr-remap: support for x2apic physical mode support + (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_27_of_41_9fa8c481b55e80edd8c637573f87853bb6b600f5: + x64, x2apic/intr-remap: introduce CONFIG_INTR_REMAP (fate + [#303948] and fate #303984). +- patches.arch/x2APIC_PATCH_28_1_of_41_f910a9dc7c865896815e2a95fe33363e9522f277: + x86: make 64bit have get_apic_id (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_29_of_41_277d1f5846d84e16760131a93b7a67ebfa8eded4: + x2apic: uninline uv_init_apic_ldr() (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_30_of_41_ad66dd340f561bdde2285992314d9e4fd9b6191e: + x2apic: xen64 paravirt basic apic ops (fate #303948 and fate + [#303984]). +- patches.arch/x2APIC_PATCH_34_of_41_1b9b89e7f163336ad84200b66a17284dbf26aced: + x86: add apic probe for genapic 64bit, v2 (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_35_of_41_d25ae38b7e005af03843833bbd811ffe8c5f8cb4: + x86: add apic probe for genapic 64bit - fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_36_of_41_276605dddb74cbf1b77696e32c4a947e42cec52d: + x2apic: use x2apic id reported by cpuid during topology + discovery (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_40_of_41_bbb65d2d365efe9951290e61678dcf81ec60add4: + x86: use cpuid vector 0xb when available for detecting cpu + topology (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_41_of_41_11c231a962c740b3216eb6565149ae5a7944cba7: + x86: use x2apic id reported by cpuid during topology discovery, + fix (fate #303948 and fate #303984). +- patches.arch/x2APIC_PATCH_42_of_41_77322deb4bc676a5ee645444e7ed1a89f854473d: + x86: io-apic - interrupt remapping fix (fate #303948 and + fate #303984). +- patches.arch/x2APIC_PATCH_43_of_41_2c72d93f6593f386f5760ca8e7ac7026948c31d7: + x2apic: fix reserved APIC register accesses in + print_local_APIC() (fate #303948 and fate #303984). +- patches.drivers/sgi-uv-led: SGI UV: Provide a LED driver and + some System Activity Indicators (FATE#304268). +- patches.suse/kdb-x86: kdb-v4.4-2.6.27-rc5-x86-1 (FATE#303971). +- patches.xen/xen-x86-no-lapic: Disallow all accesses to the + local APIC page (191115). +- patches.xen/xen3-auto-arch-x86.diff: xen3 arch-x86. +- patches.xen/xen3-patch-2.6.19: Linux 2.6.19. +- patches.xen/xen3-patch-2.6.26: 2.6.26. +- Update config files: + Added CONFIG_INTR_REMAP to all x86_64 flavors +* Wed Oct 08 2008 gregkh@suse.de +- rpm/kernel-binary.spec.in: added Obsoletes: atl2-kmp as this + driver is now included in the kernel package. +* Wed Oct 08 2008 jjolly@suse.de +- patches.arch/s390-01-04-fcpperf-4-v2.patch: Update for fcpperf-4 + patch to bring in sync with upstream version. (bnc#417243) +- patches.arch/s390-01-04-fcpperf-4.patch: Removed, replaced by + updated patch +* Wed Oct 08 2008 sjayaraman@suse.de +- Remove stale swap-over-nfs patches. +- patches.suse/SoN-05-page_alloc-reserve.patch: Delete. +- patches.suse/SoN-06-reserve-slub.patch: Delete. +* Wed Oct 08 2008 agruen@suse.de +- No uml patches left, so remove the code referring to + patches.uml.tar.bz2. +* Wed Oct 08 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/fix-up-comment.patch: RT: Remove comment that is + no longer true. +- patches.rt/check-for-migration-during-push.patch: RT: fix + push_rt_task() to handle dequeue_pushable properly. +* Wed Oct 08 2008 agruen@suse.de +- Add DMAPI patches (supported by SGI). +- Update config files: enable DMAPI. +* Wed Oct 08 2008 sjayaraman@suse.de +- Doh, forgot to remove stale files from cvs +- Update config files NFS_SWAP=y. +* Wed Oct 08 2008 sjayaraman@suse.de +- Refreshed to -v19 of swap over nfs patchset. + o netns, ipv6 fixes + o patch ordering changes due to additional patches +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict. +* Wed Oct 08 2008 bwalle@suse.de +- Enable CONFIG_MFD_SM501_GPIO also for RT. +* Wed Oct 08 2008 bwalle@suse.de +- Refresh patches.rt/mips-remove-duplicate-kconfig.patch. +* Wed Oct 08 2008 bwalle@suse.de +- Update to 2.6.27-rc9. +- Enable new configuration option CONFIG_MFD_SM501_GPIO. +- Drop following patches (mainline): + o patches.suse/e1000e_debug_contention_on_NVM_SWFLAG + o patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context + o patches.suse/e1000e_drop_stats_lock, e1000e_fix_lockdep_issues + o patches.suse/e1000e_mmap_range_chk, + o patches.suse/e1000e_reset_swflag_after_resetting_hardware + o patches.suse/e1000e_update_versione1000e_write_protect_ichx_nvm +- Adjust/refresh following patches: + o patches.arch/s390-01-03-cmm2-v2.patch + o patches.drivers/e1000e_add_82574L.patch + o patches.drivers/e1000e_add_ICH9_BM.patch + o patches.drivers/e1000e_add_LOM_devices.patch + o patches.suse/e1000e_allow_bad_checksum + o patches.suse/e1000e_call_dump_eeprom + o patches.suse/e1000e_ioremap_sanity_check + o patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory +* Wed Oct 08 2008 mmarek@suse.cz +- rpm/kernel-module-subpackage: switch KMPs to the new + weak-modules2 script, which handles running depmod and mkinitrd +* Wed Oct 08 2008 hare@suse.de +- supported.conf: mark igb as supported. +* Wed Oct 08 2008 agruen@suse.de +- kernel-source-rt must not provide a kernel-source symbol: this + would break dependencies. +* Wed Oct 08 2008 olh@suse.de +- update patches.suse/ppc-no-LDFLAGS_MODULE.patch + use suggested patch from kernel.org bugzilla +* Wed Oct 08 2008 olh@suse.de +- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch + fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380) +* Wed Oct 08 2008 gregkh@suse.de +- supported.conf: mark efivars.ko as supported +* Wed Oct 08 2008 gregkh@suse.de +- enable yealink driver (bnc#432841) +* Tue Oct 07 2008 oneukum@suse.de +- patches.fixes/ehci_sched.diff: fix hang in disable_periodic + (bnc#403346). +* Tue Oct 07 2008 trenn@suse.de +- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix + section mismatch in fujitsu_laptop driver (none). +* Tue Oct 07 2008 hare@suse.de +- patches.fixes/sd-needs-updating: Driver 'sd' needs updating + (bnc#406656). +* Tue Oct 07 2008 agruen@suse.de +- rpm/post.sh: Catch mkinitrd error code indicating missing + required modules. Only add a bootloader entry if an initrd + could be created, but re-add the bootloader entry even if + the initrd already existed before (bnc#431703). +* Tue Oct 07 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4 + (bnc#420767). +- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes + for SLES11 (bnc#432976). +* Tue Oct 07 2008 olh@suse.de +- mark legacy iseries storage as supported +* Mon Oct 06 2008 jdelvare@suse.de +- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as + unsupported. +* Mon Oct 06 2008 jdelvare@suse.de +- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985 + on ia64, these are motherboard-specific drivers for x86_64 + motherboards. +- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver + for x86 hardware. +- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there + is no Simtec hardware based on these architectures. +* Sun Oct 05 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols + defined in vmlinux by subsystem. (Actually, per directory, under + the assumption that there is enough of a correlation). +* Sun Oct 05 2008 greg@suse.de +- supported.conf: add ohci-hcd to base. Fix up other USB drivers + (USB network drivers had moved, others were missing) +* Sun Oct 05 2008 gregkh@suse.de +- patches.drivers/atl2-add-atl2-network-driver.patch: atl2: + add atl2 network driver. +- Update config files (even the rt ones). +* Fri Oct 03 2008 jkosina@suse.de +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus + WARN_ON() condition, as per upstream commit 95b866d5a +* Fri Oct 03 2008 olh@suse.de +- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935) +* Fri Oct 03 2008 olh@suse.de +- compile windfarm_pm121 into the kernel +* Fri Oct 03 2008 jeffm@suse.de +- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh, + scripts/run_oldconfig.sh, + scripts/sequence-patch.sh: Eliminated defconfig.$flavor +* Fri Oct 03 2008 olh@suse.de +- mark Cell drivers as supported +* Fri Oct 03 2008 tonyj@suse.de +- Update config files + rt configs not updated for per-module-dynamic-debug-messages.patch +* Fri Oct 03 2008 gregkh@suse.de +- change patches.suse/supported-flag to show which modules are + unsupported and externally supported in oops messages. Also change + the taint values as the documentation was totally wrong. +* Fri Oct 03 2008 tonyj@suse.de +- Reenable RT debug builds, compile tested only +- Update config files +- Fix tracer issues + patches.rt/event-trace-hrtimer-trace.patch + patches.rt/trace-events-handle-syscalls.patch + patches.rt/trace-ktime-scalar.patch + patches.rt/tracer-event-trace.patch +- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb +- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT +- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT +* Fri Oct 03 2008 gregkh@suse.de +- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch: + driver core: basic infrastructure for per-module dynamic + debug messages. +- refresh patches.trace/tracepoints.patch: Kernel Tracepoints. +- Update config files. +* Thu Oct 02 2008 agruen@suse.de +- Introduce kernel-source-rt and kernel-syms-rt packages, needed + for building real-time KMPs. +* Thu Oct 02 2008 schwab@suse.de +- Don't clean . +* Thu Oct 02 2008 jblunck@suse.de +- supported.conf: add qeth_l2 and qeth_l3 as supported modules +* Thu Oct 02 2008 jkosina@suse.de +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: update to + the latest version of the patch as provided by Intel +* Thu Oct 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc8 and c/s 684. +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Replace by ... +- patches.xen/xen3-e1000e_Export_set_memory_ro-rw: this, and put + in proper place in series.conf. +- patches.xen/xen-rwlocks-enable-interrupts: Replace by ... +- patches.xen/xen3-rwlocks-enable-interrupts: this, and put in + proper place in series.conf. +* Wed Oct 01 2008 jeffm@suse.de +- scripts/sequence-patch.sh +- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86. +* Wed Oct 01 2008 olh@suse.de +- enable msi on ppc64 (bnc#430937) +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Remove /lib/modules from file list + as it's already in filesystem +* Wed Oct 01 2008 tiwai@suse.de +- rpm/kernel-source.spec.in: Fixed missing endif +* Wed Oct 01 2008 tiwai@suse.de +- Update config files: make floppy module on i386, too +* Wed Oct 01 2008 tiwai@suse.de +- supported.conf: update sound drivers +* Wed Oct 01 2008 tonyj@suse.de +- update RT to 2.6.27-rc8 +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +* Wed Oct 01 2008 agruen@suse.de +- Update -rt config files. +* Tue Sep 30 2008 gregkh@suse.de +- update to 2.6.27-rc8 + - obsoletes these patches: + - patches.arch/ia64-kdump_proc_iomem.diff + - patches.drivers/qla2xxx-defer-risc-interrupt-enablement + - patches.fixes/usb-hcd-interrupt-shared.patch +* Tue Sep 30 2008 jkosina@suse.de +- additional patches to track down and fix e1000e NVM corruption +- patches.suse/e1000e_ioremap_sanity_check: ioremap sanity check + to catch mapping requests exceeding the BAR sizes (bnc#425480). +- patches.suse/e1000e_write_protect_ichx_nvm: e1000e: write + protect ICHx NVM to prevent malicious write/erase (bnc#425480). +* Tue Sep 30 2008 hare@suse.de +- Update config files. +* Tue Sep 30 2008 hare@suse.de +- patches.drivers/mpt-fusion-4.00.43.00-update: Update MPT Fusion + driver to v4.00.43.00 (bnc#425660). +- patches.kernel.org/gdth-section-conflict: Add missing annotations. +* Tue Sep 30 2008 sassmann@suse.de +- Update config files: Disabled everything unnecessary in + ps3 config file +* Tue Sep 30 2008 olh@suse.de +- disable ninja32 and ns87415 pata drivers on ppc64 +* Tue Sep 30 2008 sdietrich@suse.de +- config.conf: enable rt for i386/x86_64 +- Update config files: Preliminary sync with default and debug configs. +- config/x86_64/rt_timing: Delete. +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.27-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.27-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.27-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.27-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.27-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.27-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.27-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.27-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.27-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.27-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.27-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.27-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.27-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.27-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.27-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.27-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.27-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.27-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.27-RT + event-tracer: add clockevent trace. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.27-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.27-RT + Fix a previously reverted "fix". +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.27-RT + fix-adaptive-hack.patch. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.27-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.27-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.27-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.27-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.27-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.27-RT + floppy: suspend/resume fix. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT rt: remove call to stop tracer. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: document updates. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.27-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: define function trace nop. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.27-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: only trace preempt off with + preempt tracer. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.27-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.27-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.27-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: trace sched.c. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.27-RT + ftrace: avoid lockdep recursion. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: user raw spin lock for wakeup + function trace. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.27-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.27-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.27-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.27-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.27-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.27-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.27-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.27-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.27-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.27-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.27-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.27-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.27-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.27-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.27-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.27-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.27-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT lockdep: lock_set_subclass - reset a held + lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.27-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.27-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.27-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.27-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.27-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.27-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.27-RT + mapping_nrpages-fix.patch. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.27-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT RT: change from raw_spinlock_t to + __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.27-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.27-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.27-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.27-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.27-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.27-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.27-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.27-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.27-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.27-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.27-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.27-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.27-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.27-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.27-RT + nfs: fix missing preemption check. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT x86_64: do not enable the NMI watchdog + by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.27-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT local_bh_enable() is safe for + irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.27-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.27-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.27-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.27-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.27-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.27-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.27-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.27-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.27-RT. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT pmtmr: allow command line override of + ioport. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.27-RT + powerpc: ftrace stop on crash. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.27-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.27-RT + don't trace early init functions for ppc32. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.27-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.27-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.27-RT. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.27-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.27-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.27-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.27-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.27-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.27-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.27-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.27-RT + lockdep: add +1 to radix tree array. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.27-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.27-RT + radix-tree: optimistic locking. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.27-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.27-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.27-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.27-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.27-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.27-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.27-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.27-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.27-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.27-RT + rt: plist_head_splice. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.27-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.27-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.27-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.27-RT + rtmutex-debug-fix.patch. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.27-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.27-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.27-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.27-RT + rwlocks multi downgrade write. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.27-RT. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.27-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.27-RT + rwlock: rwlock torture test. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.27-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.27-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.27-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.27-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.27-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.27-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.27-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.27-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.27-RT + sched-fix-dequeued-race.patch. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.27-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.27-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.27-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.27-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.27-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.27-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.27-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.27-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.27-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.27-RT + rt: dont disable irqs in usb. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.27-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.27-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.27-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT Re: 2.6.25.4-rt4. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.27-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.27-RT. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.27-RT + ftrace: print ktime values in readable form. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.27-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.27-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.27-RT. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT remove warn on for scatterlist in preempt + rt. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.27-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.27-RT. +- patches.rt/26-rt1-chirag.patch: Linux-RT 2.6.27-RT + This patch should solve some of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: Linux-RT + 2.6.27-RT + add generalized priority-inheritance interface. +- patches.rt/rtmutex-add_readers.patch: Linux-RT 2.6.27-RT + RT: wrap the rt_rwlock "add reader" logic. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: Linux-RT + 2.6.27-RT + rtmutex: pi-boost locks as late as possible. +- patches.rt/rtmutex-initialize-waiters.patch: Linux-RT 2.6.27-RT + rtmutex: formally initialize the rt_mutex_waiters. +- patches.rt/rtmutex-use-runtime-init.patch: Linux-RT 2.6.27-RT + rtmutex: use runtime init for rtmutexes. +- patches.rt/tie-pi-into-task.patch: Linux-RT 2.6.27-RT + sched: add the basic PI infrastructure to the task_struct. +- patches.rt/rtmutex-convert-to-libpi.patch: Linux-RT 2.6.27-RT + rtmutex: convert rtmutexes to fully use the PI library. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + Linux-RT 2.6.27-RT + ftrace: fix elevated preempt_count in wakeup-tracer. +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + Linux-RT 2.6.27-RT + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.27-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.27-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.27-RT + Linux-RT 2.6.26-RT. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.27-RT + nmi-driven profiling for /proc/profile. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.27-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.27-RT. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.27-RT + rt-friendly per-cpu pages. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.27-RT. +- patches.rt/bit-spinlocks-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/compat_rwsem-fix-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/drivers_base_mutex.patch: Linux-RT 2.6.27-RT. +- patches.rt/fix-net-bug-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-ppc-define-mcount.patch: Linux-RT 2.6.27-RT. +- patches.rt/ftrace-report-failure.patch: Linux-RT 2.6.27-RT + ftrace: warn on failure to disable mcount callers. +- patches.rt/ftrace-upstream-temp.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-fifo-warn-sysctl.patch: Linux-RT 2.6.27-RT. +- patches.rt/futex-trivial-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/hrtimers-stuck-in-waitqueue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/lockdep-atomic-fixup.patch: Linux-RT 2.6.27-RT. +- patches.rt/namespace-lock-fixes.patch: Linux-RT 2.6.27-RT. +- patches.rt/nmi-prof-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/plist-fix-static-node-init.patch: Linux-RT 2.6.27-RT. +- patches.rt/powerpc-01-separate-the-irq-radix-tree-insertion.patch: + Linux-RT 2.6.27-RT. +- patches.rt/powerpc-02-make-the-irq-reverse-mapping-radix-tree-lockless.patch: + Linux-RT 2.6.27-RT. +- patches.rt/ppc-fix-prev-revert-fix-again.patch: Linux-RT + 2.6.27-RT. +- patches.rt/prof-sysctl-compile.patch: Linux-RT 2.6.27-RT. +- patches.rt/rcu-apply-rcu_process_callbacks-from-mainline.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rcu-preempt-tracing-preempt-disable-fix.patch: + Linux-RT 2.6.27-RT. +- patches.rt/rt-wq-flush_work.patch: Linux-RT 2.6.27-RT. +- patches.rt/rtmutex-debug-magic.patch: Linux-RT 2.6.27-RT + rtmutex: check integrity. +- patches.rt/sched-add-needs_post_schedule.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-generic-hide-smp-warning.patch: Linux-RT + 2.6.27-RT + suppress warning of smp_processor_id use.. +- patches.rt/sched-make-double-lock-balance-fair.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-if-pushable.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-only-push-once-per-queue.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sched-properly-account-irq-and-rt-load.patch: + Linux-RT 2.6.27-RT + sched: properly account IRQ and RT load in . +- patches.rt/sched-rt-runtime-lock-raw.patch: Linux-RT 2.6.27-RT. +- patches.rt/seqlock-01-make-sure-that-raw_seqlock-retries.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-02-fix-elevated-preempt-count.patch: + Linux-RT 2.6.27-RT. +- patches.rt/seqlock-serialize-against-writers.patch: Linux-RT + 2.6.27-RT. +- patches.rt/seqlocks-handle-rwlock-and-spin.patch: Linux-RT + 2.6.27-RT + seqlock - fix for both PREEMPT_RT and non PREEMPT_RT. +- patches.rt/shorten-posix-cpu-timers-name.patch: Linux-RT + 2.6.27-RT. +- patches.rt/sysctl-compile-fix.patch: Linux-RT 2.6.27-RT. +- patches.rt/tracepoint-backport.patch: Linux-RT 2.6.27-RT. +- patches.rt/x86-tlbstate-lock-raw.patch: Linux-RT 2.6.27-RT. +* Tue Sep 30 2008 olh@suse.de +- enable ipmi message handler on ppc64 (bnc#430705) +* Tue Sep 30 2008 olh@suse.de +- create flavor symlinks unconditionally + they do not depend on presence of modules +* Mon Sep 29 2008 agruen@suse.de +- Update config files after Swap-over-NFS backout. +* Mon Sep 29 2008 agruen@suse.de +- kernel-vanilla and kernel-p3 are not split into main, -base, and + -extra packages. Fix the bogus dependencies on those packages. +* Mon Sep 29 2008 jkosina@suse.de +- disabled the following Swap-over-NFS patches, as they cause panic + in IPv6 code: + - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). + - patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). + - patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). + - patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). + - patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). + - patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). + - patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). + - patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). + - patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). + - patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). + - patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). + - patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). + - patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). + - patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). + - patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). + - patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). + - patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). + - patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). + - patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). + - patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). + - patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). + - patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). + - patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). + - patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). + - patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). + - patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). + - patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). + - patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). + - patches.xen/xen3-auto-common.diff: xen3 common. +* Mon Sep 29 2008 ptesarik@suse.cz +- patches.arch/x86-tracehook: x86 tracehook (FATE#304321). + Provide the base infrastructure for utrace on x86. +* Mon Sep 29 2008 schwab@suse.de +- config/powerpc/vanilla: configure to 64bit. +* Mon Sep 29 2008 schwab@suse.de +- rpm/functions.sh: remove readlink emulation. +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.3-update: Update lpfc to 8.2.8.3 + (bnc#420767). +* Mon Sep 29 2008 rw@suse.de +- Update ia64 config files. (bnc#429881) +* Mon Sep 29 2008 jjolly@suse.de +- patches.drivers/ehca-flush-cqe.patch: adds software flush CQE + generation (bnc#430344) +* Mon Sep 29 2008 jkosina@suse.de +- patches.suse/e1000e_allow_bad_checksum: fix infinite loop bug in + e1000_probe() in case the card has invalid EEPROM checksum +* Mon Sep 29 2008 agruen@suse.de +- Do not split kernels which have modules disabled (kernel-ps3) + or which do not differentiate between supported and unsupported + modules (kernel-vanilla). +* Mon Sep 29 2008 hare@suse.de +- patches.drivers/open-fcoe-dcb-support: Fix section annotation + for ixgbe. +- patches.fixes/scsi-enhance-error-codes: Add missing hunk. +- patches.fixes/open-iscsi-git-update: Open-iSCSI updates + (FATE#304283). +- patches.kernel.org/gdth-section-conflict: Fixup gdth + section annotations. +* Mon Sep 29 2008 aj@suse.de +- Silence /etc/rpm/macros.kernel-source via rpmlintrc. +* Mon Sep 29 2008 jbeulich@novell.com +- Enable Solarflare driver link and resource driver patches. +- Update x86 config files. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spc.in: Try to get rid of a hack that makes + uname -r pretend in build environments that the kernel from + the installed kernel-source package is the running kernel: + packages assuming this are completely broken ans should really + be fixed. +* Mon Sep 29 2008 agruen@suse.de +- rpm/kernel-source.spec.in: Prepare for the upcoming introduction + of kernel-source-rt (and kernel-syms-rt) for producing KMPs for + real-time kernels. +- rpm/install-configs: Remove; this script didn't improve things. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.rpmlintrc: New file to silence warnings about + zero size files +- rpm/kernel-source.spec.in: Install it. +- rpm/kernel-source.spec.in: Make /etc/rpm/macros.kernel-source + a config file to silence rpmlint. +* Sun Sep 28 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-i810, i2c-prosavage and i2c-savage4 are gone. + - i2c-isch and i2c-nforce2-s4985 are new, mark as supported. +* Sun Sep 28 2008 aj@suse.de +- rpm/kernel-source.spec.in: Do not package .gitignore files. +* Sun Sep 28 2008 agruen@suse.de +- Fix CONFIG_MODULES=n case. +- config.conf: Some cleanups. +* Sat Sep 27 2008 agruen@suse.de +- Split the binary kernel packages into three parts: + + kernel-$flavor-base: very reduced hardware support, intended + to be used in virtual machine images + + kernel-$flavor: extends the base package; contains all kernel + modules we can support + + kernel-$flavor-extra: all other kernel modules which may be + useful, but which we cannot support. +* Sat Sep 27 2008 agruen@suse.de +- Hardlink duplicate files automatically: It doesn't save much, + but it keeps rpmlint from breaking the package build. +* Sat Sep 27 2008 agruen@suse.de +- Add consistency check: supported modules must not depend on + unsupported ones ... and guess what, there was a large number of + such modules. Fix this by adding all the dependent modules to + supported.conf. +* Sat Sep 27 2008 knikanth@suse.de +- patches.suse/dm-barrier-single-device: Implement barrier + support for single device DM devices (FATE#304489). +* Fri Sep 26 2008 jeffm@suse.de +- scripts/tar-up_and_run_mbuild.sh: Added -xen flavor to default + mbuild spec list. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). +* Fri Sep 26 2008 kkeil@suse.de +- patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap + * updated version with better reporting (bnc#425480) +* Fri Sep 26 2008 kkeil@suse.de +- patches to track down and fix the e1000e NVM corruption + (bnc#425480) +- patches.suse/e1000e_allow_bad_checksum: e1000e: allow bad + checksum +- patches.suse/e1000e_call_dump_eeprom: e1000e: dump eeprom to + dmesg for ich8/9 +- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: e1000e: + debug contention on NVM SWFLAG +- patches.suse/e1000e_do_not_ever_sleep_in_interrupt_context: + e1000e: do not ever sleep in interrupt context +- patches.suse/e1000e_drop_stats_lock: e1000e: drop stats lock +- patches.suse/e1000e_Export_set_memory_ro-rw: Export + set_memory_ro() and set_memory_rw() calls +- patches.suse/e1000e_fix_lockdep_issues: e1000e: fix lockdep + issues +- patches.suse/e1000e_mmap_range_chk: check ranges in pci_mmap +- patches.suse/e1000e_reset_swflag_after_resetting_hardware: + e1000e: reset swflag after resetting hardware +- patches.suse/e1000e_update_version: update version +- patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: + e1000e: Use set_memory_ro()/set_memory_rw() to protect flash + memory +- cleanup old not longer used patches + * patches.drivers/e1000-7.6.5-napi-tail.patch + * patches.drivers/e1000-7.6.9.2 + * patches.drivers/e1000-7.6.9.2-napi +* Fri Sep 26 2008 kkeil@suse.de +- Enable CONFIG_SGI_IOC4=m in x86_64 (bnc#430275) +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-export-hotplug_execute: acpi: export + acpi_os_hotplug_execute. +* Fri Sep 26 2008 jeffm@suse.de +- patches.xen/xen-rwlocks-enable-interrupts: add missing + __raw_{read,write}_lock_flags to xen's asm/spinlock.h. +* Fri Sep 26 2008 jeffm@suse.de +- patches.arch/acpi-bay-remove-from-makefile: acpi: remove bay.c + from makefile. +* Fri Sep 26 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Disabled sparse checking. Too many + false positives. +* Fri Sep 26 2008 trenn@suse.de + No functional change: +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). + Dock bug fixes (kacpid runs amok on Dells after suspend): +- patches.arch/acpi-dock-avoid-check-_STA-method.patch: avoid + check _STA method (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-eject-request-process.patch: fix + eject request process (fate#304731,bnc#401740). + More Dock improvements, unrelated to above fixes: +- patches.arch/acpi-bay-remove-useless-code.patch: remove useless + code (fate#304731,bnc#401740). +- patches.arch/acpi-dock-Fix-duplicate-notification-handler-register.patch: + Fix duplicate notification handler register + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-_LCK-support-for-dock.patch: add _LCK + support for dock (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-for-bay-in-a-dock-station.patch: + fix for bay in a dock station (fate#304731,bnc#401740). +- patches.arch/acpi-dock-fix-hotplug-race.patch: fix hotplug race + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-introduce-.uevent-for-devices-in-dock.patch: + introduce .uevent for devices in dock (fate#304731,bnc#401740). +- patches.arch/acpi-libata-hotplug-to-align-with-dock-driver.patch: + libata hotplug to align with dock driver + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-makeing-dock-driver-supports-bay-and-battery-hotplug.patch: + makeing dock driver supports bay and battery hotplug + (fate#304731,bnc#401740). +- patches.arch/acpi-dock-add-type-sysfs-file-for-dock.patch: + add 'type' sysfs file for dock (fate#304731,bnc#401740). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +* Fri Sep 26 2008 jeffm@suse.de +- Update config files: NFS_SWAP=y +* Fri Sep 26 2008 ptesarik@suse.cz +- patches.suse/rwlocks-enable-interrupts: Allow rwlocks to + re-enable interrupts (bnc#387784). +- patches.arch/ia64-rwlocks-enable-interrupts: ia64: re-enable + interrupts when waiting for a rwlock (bnc#387784). +* Fri Sep 26 2008 sjayaraman@suse.de +- Add Swap over NFS patchset. +- Adjust patches.xen/xen3-auto-common.diff to avoid conflict on skbuff.h + as both xen and swap-over-nfs want to add some bits to the skbuff structure. +- patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: + gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-02-mm-setup_per_zone_pages_min.patch: mm: + serialize access to min_free_kbytes (FATE#303834). +- patches.suse/SoN-03-doc.patch: swap over network documentation + (FATE#303834). +- patches.suse/SoN-04-mm-gfp-to-alloc_flags-expose.patch: mm: + expose gfp_to_alloc_flags() (FATE#303834). +- patches.suse/SoN-05-page_alloc-reserve.patch: mm: tag reseve + pages (FATE#303834). +- patches.suse/SoN-06-reserve-slub.patch: mm: slb: add knowledge + of reserve pages (FATE#303834). +- patches.suse/SoN-07-mm-kmem_estimate_pages.patch: mm: + kmem_alloc_estimate() (FATE#303834). +- patches.suse/SoN-08-mm-PF_MEMALLOC-softirq.patch: mm: allow + PF_MEMALLOC from softirq context (FATE#303834). +- patches.suse/SoN-09-mm-page_alloc-emerg.patch: mm: emergency + pool (FATE#303834). +- patches.suse/SoN-10-global-ALLOC_NO_WATERMARKS.patch: mm: + system wide ALLOC_NO_WATERMARK (FATE#303834). +- patches.suse/SoN-11-mm-page_alloc-GFP_EMERGENCY.patch: mm: + __GFP_MEMALLOC (FATE#303834). +- patches.suse/SoN-12-mm-reserve.patch: mm: memory reserve + management (FATE#303834). +- patches.suse/SoN-13-mm-selinux-emergency.patch: selinux: + tag avc cache alloc as non-critical (FATE#303834). +- patches.suse/SoN-14-net-backlog.patch: net: wrap + sk->sk_backlog_rcv() (FATE#303834). +- patches.suse/SoN-15-net-ps_rx.patch: net: packet split receive + api (FATE#303834). +- patches.suse/SoN-16-net-sk_allocation.patch: net: + sk_allocation() - concentrate socket related allocations + (FATE#303834). +- patches.suse/SoN-17-netvm-reserve.patch: netvm: network reserve + infrastructure (FATE#303834). +- patches.suse/SoN-18-netvm-reserve-inet.patch: netvm: INET + reserves. (FATE#303834). +- patches.suse/SoN-19-netvm-skbuff-reserve.patch: netvm: hook + skb allocation to reserves (FATE#303834). +- patches.suse/SoN-20-netvm-sk_filter.patch: netvm: filter + emergency skbs. (FATE#303834). +- patches.suse/SoN-21-netvm-tcp-deadlock.patch: netvm: prevent + a stream specific deadlock (FATE#303834). +- patches.suse/SoN-22-emergency-nf_queue.patch: netfilter: + NF_QUEUE vs emergency skbs (FATE#303834). +- patches.suse/SoN-23-netvm.patch: netvm: skb processing + (FATE#303834). +- patches.suse/SoN-24-mm-swapfile.patch: mm: add support for + non block device backed swap files (FATE#303834). +- patches.suse/SoN-25-mm-page_file_methods.patch: mm: methods + for teaching filesystems about PG_swapcache pages (FATE#303834). +- patches.suse/SoN-26-nfs-swapcache.patch: nfs: teach the NFS + client how to treat PG_swapcache pages (FATE#303834). +- patches.suse/SoN-27-nfs-swapper.patch: nfs: disable data cache + revalidation for swapfiles (FATE#303834). +- patches.suse/SoN-28-nfs-swap_ops.patch: nfs: enable swap on NFS + (FATE#303834). +- patches.suse/SoN-29-nfs-alloc-recursions.patch: nfs: fix various + memory recursions possible with swap over NFS. (FATE#303834). +- patches.xen/xen3-auto-common.diff: xen3 common. +* Fri Sep 26 2008 ptesarik@suse.cz +- split patches.arch/s390-01-01-self-ptrace-v3.patch to make it + more obvious that the patch is not constrained to s390. + The new series is: + patches.suse/self-ptrace.patch: the generic pieces + patches.arch/x86-self-ptrace.patch: implementation for x86 + patches.arch/s390-01-01-self-ptrace-v3.patch: dtto for s390 +* Thu Sep 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc7 and c/s 676. +* Thu Sep 25 2008 olh@suse.de +- add patches.arch/ppc64-rpanote-relocate-firmware.patch + update RPA note for firmware relocation (bnc#427960 - LTC48297) +* Wed Sep 24 2008 jblunck@suse.de + This adds some tracepoint instrumentation taken from the LTTng patch + series. Tracepoints are enabled for kernel-debug and kernel-trace only. I + disabled ftrace for all flavors except kernel-debug and kernel-trace as well. +- Update config files. +- rpm/kernel-source.spec.in,kernel-binary.spec.in, config.conf: Add trace + flavor +- patches.fixes/ia64-sparse-fixes.diff: ia64-kvm: fix sparse + warnings. +- patches.xen/xen3-fixup-common: rediff +- patches.xen/xen3-auto-common.diff: rediff +- patches.xen/xen3-patch-2.6.21: rediff +- patches.xen/xen3-patch-2.6.26: rediff +- patches.trace/rcu-read-sched.patch +- patches.trace/markers-use-rcu-read-lock-sched.patch +- patches.trace/tracepoints.patch +- patches.trace/tracepoints-use-table-size-macro.patch +- patches.trace/tracepoints-documentation.patch +- patches.trace/tracepoints-tracepoint-synchronize-unregister.patch +- patches.trace/tracepoints-documentation-fix-teardown.patch +- patches.trace/tracepoints-samples.patch +- patches.trace/tracepoints-samples-fix-teardown.patch +- patches.trace/lttng-instrumentation-irq.patch +- patches.trace/lttng-instrumentation-scheduler.patch +- patches.trace/lttng-instrumentation-timer.patch +- patches.trace/lttng-instrumentation-kernel.patch +- patches.trace/lttng-instrumentation-filemap.patch +- patches.trace/lttng-instrumentation-swap.patch +- patches.trace/lttng-instrumentation-memory.patch +- patches.trace/lttng-instrumentation-page_alloc.patch +- patches.trace/lttng-instrumentation-hugetlb.patch +- patches.trace/lttng-instrumentation-net.patch +- patches.trace/lttng-instrumentation-ipv4.patch +- patches.trace/lttng-instrumentation-ipv6.patch +- patches.trace/lttng-instrumentation-socket.patch +- patches.trace/lttng-instrumentation-fs.patch +- patches.trace/lttng-instrumentation-ipc.patch +- patches.trace/ftrace-port-to-tracepoints.patch +- patches.trace/ftrace-framepointer.diff +* Tue Sep 23 2008 jjolly@suse.de +- patches.arch/s390-01-03-cmm2-v2.patch: kernel (new function): + Collaborative Memory Management Stage II (bnc#417244) +- patches.xen/xen3-auto-common.diff: Modified patch to allow for + the new patch +* Tue Sep 23 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Enable sparse checking and section + mismatch checking. +* Tue Sep 23 2008 jeffm@suse.de +- patches.kernel.org/arch-include-asm-fixes: kbuild: Properly + handle arch/$arch/include/asm (bnc#427473). +* Mon Sep 22 2008 jeffm@suse.de +- patches.fixes/ext2-avoid-printk-flood-with-dir-corruption: + ext2: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +- patches.fixes/ext3-avoid-printk-flood-with-dir-corruption: + ext3: Avoid printk floods in the face of directory corruption + (bnc#427244 CVE-2008-3528). +* Mon Sep 22 2008 jeffm@suse.de +- Update to 2.6.27-rc7. + - Eliminated 2 patches. + - patches.arch/s390-01-04-fcpperf-4.patch: Fixed up context. +* Mon Sep 22 2008 trenn@suse.de + Workaround for ThinkPad brightness switching: +- patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: + Do not use video backlight switching for Lenovo ThinkPads. + Commented out for now, possibly to be included later +- patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: + cpufreq: Add a cpu parameter to __cpufreq_driver_getavg().. +- patches.drivers/cpufreq_add_idle_microaccounting_6.patch: + cpufreq,ondemand: Use get_cpu_idle_time_us() to get + micro-accounted idle information. +- patches.drivers/cpufreq_change_load_calculation_2.patch: + cpufreq, ondemand: Change the load calculation, optimizing + for dependent cpus. +- patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: + export get_cpu_idle_time_us() . +- patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: + cpufreq,ondemand: Prepare changes for doing micro-accounting. +- patches.drivers/cpufreq_parameterize_down_differential_4.patch: + cpufreq, ondemand: Use a parameter for down differential. + Added CONFIG_PCIEASPM for rt, xen, powerpc and IA64 to be more + consistent across different kernel flavors as suggested on the + kernel list: +- Update config files. +* Mon Sep 22 2008 hare@suse.de +- patches.drivers/open-fcoe-libfc: Fix build error on IA64. +- patches.fixes/scsi-terminate-target-reset: Target reset hangs + (bnc#427267). +- supported.conf: Update to include supported SCSI adapters. +* Fri Sep 19 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Re-enable after removing FTRACE + related change. +- Update x86 non-debug config files: Turn off FRAME_POINTER and FTRACE. +* Fri Sep 19 2008 nfbrown@suse.de +- patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch: + md: Allow metadata_version to be updated for externally managed + metadata. (FATE#304218). +- patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch: + md: Don't try to set an array to 'read-auto' if it is already + in that state. (FATE#304218). +* Thu Sep 18 2008 jbeulich@novell.com +- patches.suse/no-frame-pointer-select: Disable. +- Re-enable CONFIG_FRAME_POINTER in x86 config files. +* Thu Sep 18 2008 jbeulich@novell.com +- Update i386 and x86-64 config files (disable CONFIG_FRAME_POINTER in + non-debug configs). +- patches.suse/stack-unwind: Add missing put_cpu()-s for x86-64. +- patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig + (bnc#402518). +* Thu Sep 18 2008 hare@suse.de +- Update config files. +- patches.drivers/open-fcoe-driver: fcoe: Fibre Channel over + Ethernet driver (FATE#303913). +- patches.drivers/open-fcoe-libfc: libfc: a modular software + Fibre Channel implementation (FATE#303913). +- patches.drivers/open-fcoe-header-files: FC protocol definition + header files (FATE#303913). +- patches.drivers/open-fcoe-dcb-support: FCoE: Add DCB support + (FATE#303913). +- patches.drivers/ixgbe-fcoe-bugfixes: ixgbe: Bugfixes for FCoE. +- patches.fixes/vlan-gso-size-fix: vlan: device not reading gso + max size of parent. (FATE#303913). +- patches.fixes/pkt_action-skbedit: pkt_action: add new action + skbedit. +- patches.fixes/pkt_sched_multiq_support: pkt_sched: Add + multiqueue scheduler support (FATE#303913). +- supported.conf: Update to include FCoE and device_handler + modules +* Wed Sep 17 2008 jbeulich@novell.com +- supported.conf: adjust name of ide-cd (is now ide-cd_mod). +* Wed Sep 17 2008 hare@suse.de +- patches.drivers/qla2xxx-defer-risc-interrupt-enablement: + qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes (FATE#304113). +- patches.drivers/qla2xxx-8.02.01-k8-update: Update qla2xxx to + 8.02.01-k8 (FATE#304113). +* Wed Sep 17 2008 hare@suse.de +- patches.fixes/scsi-retry-hardware-error: make scsi_check_sense + HARDWARE_ERROR return ADD_TO_MLQUEUE on retry (FATE#304042) +* Tue Sep 16 2008 olh@suse.de +- disable CONFIG_SPARSEMEM_VMEMMAP on ppc64 to allow memory remove + (bnc#417537) +* Mon Sep 15 2008 jkosina@suse.de +- Update config files (build elousb driver as module) +- patches.drivers/elousb.patch: Elo USB touchscreen driver + (FATE#304972). +* Mon Sep 15 2008 hare@suse.de +- patches.fixes/dm-mpath-abort-queue: Abort queued requests for + multipath (FATE#304151). +* Mon Sep 15 2008 hare@suse.de +- Update config files: Disable CONFIG_OCFS2_COMPAT_JBD +* Mon Sep 15 2008 hare@suse.de +- patches.xen/xen-scsifront-block-timeout-update: Update XEN + scsifront driver to request timeouts. +* Mon Sep 15 2008 sdietrich@suse.de +- Update config files: Enable GROUP_SCHED, FAIR_GROUP_SCHED, + RT_GROUP_SCHED, CGROUP_SCHED +* Mon Sep 15 2008 hare@suse.de +- patches.drivers/block-timeout-handling: Fix typo. +* Fri Sep 12 2008 duwe@suse.de +- Add LED driver for SGI "UV" systems (FATE#304268) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/bdev-resize-added-flush_disk: Added + flush_disk to factor out common buffer cache flushing code + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-adjust-block-device-size: + Adjust block device size after an online resize of a + disk. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-call-flush_disk: Call flush_disk() + after detecting an online resize. (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-check-for-device-resize: + Check for device resize when rescanning partitions + (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-sd-driver-calls: SCSI sd driver + calls revalidate_disk wrapper (FATE#302348,FATE#303786). +- patches.drivers/bdev-resize-wrapper-for-revalidate_disk: + Wrapper for lower-level revalidate_disk + routines. (FATE#302348,FATE#303786). +- patches.drivers/block-timeout-handling: block: unify request + timeout handling (FATE#304151,bnc#417544). +- patches.fixes/scsi-misc-git-update: SCSI misc fixes + (FATE#303485,FATE#303484). +- patches.fixes/scsi-enhance-error-codes: Separate failfast into + multiple bits (FATE#303485,FATE#303484). +- patches.suse/rq-based-block-layer: rediff. +- patches.suse/rq-based-multipath-functions: rediff. +- patches.suse/no-partition-scan: rediff. +* Fri Sep 12 2008 hare@suse.de +- patches.fixes/scsi-misc-git-update: SCSI misc fixes, + required by the driver updates (FATE#303485,FATE#303484) +* Fri Sep 12 2008 hare@suse.de +- patches.drivers/lpfc-8.2.8.1-update: Update lpfc to 8.2.8.1 + (bnc#420767). +- patches.drivers/lpfc-8.2.8-update: Emulex lpfc driver update + to 8.2.8 (FATE#303485,bnc#420767). +* Fri Sep 12 2008 bwalle@suse.de +- patches.arch/ia64-kdump_proc_iomem.diff: + IA64: assign a distinguishable label to uncached memory in + /proc/iomem (to fix MCA on kdump boot). +* Thu Sep 11 2008 jack@suse.cz + Latest ext4 fixes from ext4 patch queue: +- patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: + ext4: Don't add the inode to journal handle until after the + block is allocated (fate#303783). +- patches.fixes/ext4_add-missing-unlock-to-ext4-check-descriptors: + ext4: add missing unlock in ext4_check_descriptors() on error + path (fate#303783). +- patches.fixes/ext4-Add-percpu-dirty-block-accounting.patch: + ext4: Add percpu dirty block accounting. (fate#303783). +- patches.fixes/ext4_create-proc-ext4-stats-file-more-carefully: + ext4: fix #11321: create /proc/ext4/*/stats more carefully + (fate#303783). +- patches.fixes/ext4_fix_longlong_checkpatch_issues: ext4: + Fix long long checkpatch warnings (fate#303783). +- patches.fixes/ext4_fix_printk_checkpatch_issues: ext4: + Add printk priority levels to clean up checkpatch warnings + (fate#303783). +- patches.fixes/ext4_fix_whitespace_checkpatch_issues: ext4: + Fix whitespace checkpatch warnings/errors (fate#303783). +- patches.fixes/ext4_i_disksize_lock_race_fix.patch: ext4: + Properly update i_disksize. (fate#303783). +- patches.fixes/ext4_invalidate_pages_when_delalloc_alloc_fail.patch: + ext4: invalidate pages if delalloc block allocation + fails. (fate#303783). +- patches.fixes/ext4-Make-sure-all-the-block-allocation-paths-reser.patch: + ext4: Make sure all the block allocation paths reserve blocks + (fate#303783). +- patches.fixes/ext4_nonmballoc_reservation_ENOSPC_fix.patch: + ext4: Fix ext4 nomballoc allocator for ENOSPC (fate#303783). +- patches.fixes/ext4-Retry-block-allocation-if-we-have-free-blocks.patch: + ext4: Retry block allocation if we have free blocks left + (fate#303783). +- patches.fixes/ext4-Retry-block-reservation.patch: ext4: Retry + block reservation (fate#303783). +- patches.fixes/ext4-Signed-arithematic-fix.patch: ext4: Signed + arithematic fix (fate#303783). +- patches.fixes/ext4-Switch-to-non-delalloc-mode-when-we-are-low-on.patch: + ext4: Switch to non delalloc mode when we are low on free + blocks count. (fate#303783). +- patches.fixes/ext4_truncate_block_allocated_on_a_failed_ext4_write_begin.patch: + ext4: truncate block allocated on a failed ext4_write_begin + (fate#303783). +- patches.fixes/ext4_update-flex-bg-counters-when-resizing: + Update flex_bg free blocks and free inodes counters when + resizing. (fate#303783). +- patches.fixes/percpu_counter_sum_cleanup.patch: percpu counter: + clean up percpu_counter_sum_and_set() (fate#303783). +* Thu Sep 11 2008 bwalle@suse.de +- Enable KDB for i386 and x86_64 in "default" and "pae" + configuration with CONFIG_KDB_OFF set to "y" (FATE#303971). +- Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in all configurations + that have KDB enabled. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + enable PID_NS and USER_NS + (FATE#303785, FATE#304371) +* Thu Sep 11 2008 jeffm@suse.de +- Update config files. + - Enabled CONFIG_XFRM_SUB_POLICY (FATE#303781) +* Thu Sep 11 2008 mfasheh@suse.com +- Added POSIX File Locks support for Ocfs2 (FATE#110294) + - patches.suse/ocfs2-POSIX-file-locks-support.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 JBD2 Support (FATE#302877) + - patches.suse/ocfs2-Limit-inode-allocation-to-32bits.patch + - patches.suse/ocfs2-Add-the-inode64-mount-option.patch + - patches.suse/ocfs2-Switch-over-to-JBD2.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Added Ocfs2 Extended Attributes Support (FATE#302067) + - patches.suse/ocfs2-Modify-ocfs2_num_free_extents-f.patch + - patches.suse/ocfs2-Use-ocfs2_extent_list-instead-o.patch + - patches.suse/ocfs2-Abstract-ocfs2_extent_tree-in-b.patch + - patches.suse/ocfs2-Make-high-level-btree-extend-co.patch + - patches.suse/ocfs2-Add-the-basic-xattr-disk-layout-in-ocf.patch + - patches.suse/ocfs2-Add-helper-function-in-uptodate.patch + - patches.suse/ocfs2-Add-extent-tree-operation-for-x.patch + - patches.suse/ocfs2-reserve-inline-space-for-extend.patch + - patches.suse/ocfs2-Add-extended-attribute-support.patch + - patches.suse/ocfs2-Add-xattr-index-tree-operations.patch + - patches.suse/ocfs2-Add-xattr-bucket-iteration-for.patch + - patches.suse/ocfs2-Add-xattr-lookup-code-xattr-btr.patch + - patches.suse/ocfs2-Optionally-limit-extent-size-in.patch + - patches.suse/ocfs2-Enable-xattr-set-in-index-btree.patch + - patches.suse/ocfs2-Delete-all-xattr-buckets-during.patch + - patches.suse/ocfs2-Add-incompatible-flag-for-exten.patch + - patches.suse/ocfs2-fix-printk-format-warnings.patch + - patches.suse/ocfs2-Prefix-the-extent-tree-operations-structure.patch + - patches.suse/ocfs2-Prefix-the-ocfs2_extent_tree-structure.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-get-put-instead-of-all.patch + - patches.suse/ocfs2-Make-private-into-object-on-ocfs2_extent_.patch + - patches.suse/ocfs2-Provide-the-get_root_el-method-to-ocfs2_ext.patch + - patches.suse/ocfs2-Use-struct-ocfs2_extent_tree-in-ocfs2_num_fre.patch + - patches.suse/ocfs2-Determine-an-extent-tree-s-max_leaf_clusters.patch + - patches.suse/ocfs2-Create-specific-get_extent_tree-functions.patch + - patches.suse/ocfs2-Add-an-insertion-check-to-ocfs2_extent_tree_o.patch + - patches.suse/ocfs2-Make-ocfs2_extent_tree-the-first-class-repres.patch + - patches.suse/ocfs2-Comment-struct-ocfs2_extent_tree_operations.patch + - patches.suse/ocfs2-Change-ocfs2_get_-_extent_tree-to-ocfs2_ini.patch + - patches.suse/ocfs2-bug-fix-for-journal-extend-in-xattr.patch + - patches.suse/ocfs2-Resolve-deadlock-in-ocfs2_xattr_free_.patch + - patches.suse/ocfs2-Add-xattr-mount-option-in-ocfs2_show_options.patch +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/jbd2-create-proc-entry-fix.patch + jbd2: Create proc entry with bdevname+i_ino. + (FATE#302877) +* Thu Sep 11 2008 mfasheh@suse.com +- Add patches.fixes/dlm-allow-multiple-lockspaces.patch + dlm: allow multiple lockspace creates + (FATE#110294) +* Thu Sep 11 2008 schwab@suse.de +- Update kdb patches. +* Thu Sep 11 2008 jslaby@suse.de +- Update config files. + change CONFIG_NODES_SHIFT from 6 to 9 + (FATE#304261) +* Wed Sep 10 2008 trenn@suse.de +- Update config files. + Added: CONFIG_PCIEASPM +* Wed Sep 10 2008 kkeil@suse.de +- patches.drivers/e1000e_add_82574L.patch: e1000e: add support + for new 82574L part. +- patches.drivers/e1000e_add_ICH9_BM.patch: e1000e: add support + for the 82567LM-4 device. +- patches.drivers/e1000e_add_LOM_devices.patch: e1000e: add + support for 82567LM-3 and 82567LF-3 (ICH10D). + (FATE#303916) +* Wed Sep 10 2008 hare@suse.de +- patches.suse/no-partition-scan: Implement 'no_partition_scan' + commandline option (FATE#303697) +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/ipmi-section-conflict.diff: ipmi: Fix + section type conflicts. +- patches.kernel.org/psmouse-section-conflict.diff: psmouse: + fix section type conflict. +- patches.kernel.org/carmine-section-mismatch: video: Fix section + mismatch in carminefb. +- patches.kernel.org/md-section-conflict: md: Fix section + conflicts. +- patches.kernel.org/setup_APIC_timer-section-mismatch: x86: + Fix section conflict with kvm_setup_secondary_clock. +* Wed Sep 10 2008 trenn@suse.de +- patches.arch/thinkpad_fingers_off_backlight_igd.patch: + Serve ThinkPad IGD devices backlight functionality through + thinkpad_acpi (fate #302883). +- supported.conf: Add most important laptop drivers as supported: + kernel/drivers/misc/asus_laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/acpi/wmi + kernel/drivers/misc/hp-wmi +* Wed Sep 10 2008 jeffm@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Fixed up + some section conflicts. +* Wed Sep 10 2008 jeffm@suse.de +- Update to 2.6.27-rc6. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Added missing netfilter modules. +* Wed Sep 10 2008 jeffm@suse.de +- supported.conf: Updated netfilter module names. +* Wed Sep 10 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: Updated header. +* Wed Sep 10 2008 jkosina@suse.de +- Update config files: support more than 4 serial ports + (FATE#303314) +* Wed Sep 10 2008 olh@suse.de +- set CONFIG_CMM=y instead of =m to simplify virtual partition memory + (bnc#417554) +* Tue Sep 09 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: add Recommends: kerneloops +* Tue Sep 09 2008 olh@suse.de +- Updated to 2.6.27-rc5-git10 +* Mon Sep 08 2008 olh@suse.de +- Updated to 2.6.27-rc5-git9 +* Fri Sep 05 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v3.patch: system call + notification with self_ptrace (bnc#417299) +- patches.arch/s390-01-02-dcss-64-v2.patch: dcssblk (new function): + Add support for >2G DCSS and stacked contiguous DCSS support. + (bnc#417246) +- patches.arch/s390-01-04-fcpperf-{1-4}.patch: (kernel):FCP - + Performance Data colletion & analysis (bnc#417243) +* Fri Sep 05 2008 olh@suse.de +- add patches.fixes/usb-hcd-interrupt-shared.patch + fix interrupt handling for shared irqs, for PS3 (bnc#409961) +* Fri Sep 05 2008 olh@suse.de +- Updated to 2.6.27-rc5-git7 +* Thu Sep 04 2008 olh@suse.de +- build with CONFIG_POWER4_ONLY (bnc#417566) + this disables support for POWER3 and RS64 cpus +* Thu Sep 04 2008 jkosina@suse.de +- switch from Reno to Cubic as default TCP congestion algorithm + (bnc#422825) +* Thu Sep 04 2008 bwalle@suse.de +- Update KDB patches. Fix build on x86_64-debug. +* Wed Sep 03 2008 jeffm@suse.de +- mark crc-t10dif as supported +* Wed Sep 03 2008 olh@suse.de +- mark pata_pdc2027x as supported +* Wed Sep 03 2008 olh@suse.de +- mark spidernet as supported +* Wed Sep 03 2008 olh@suse.de +- mark ehea as supported +* Wed Sep 03 2008 trenn@suse.de +- supported.conf: + Mark dock (libata depends on it), bay, acpi_memhotplug, hpilo + as supported + Remove or adjust supported laptop drivers that went from + drivers/acpi to drivers/misc +* Wed Sep 03 2008 hare@suse.de +- supported.conf: Mark virtio modules as supported. +* Tue Sep 02 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc5 and c/s 651. +* Tue Sep 02 2008 jjolly@suse.de +- patches.arch/s390-01-01-self-ptrace-v2.patch: kernel + (new function): System call notification with self_ptrace + (bnc#417299,FATE#304021) +* Mon Sep 01 2008 agruen@suse.de +- File capabilities: replace our no_file_caps patch with what is + supposed to end up in 2.6.28. +* Mon Sep 01 2008 bwalle@suse.de +- patches.arch/ia64-node_mem_map-node_start_pfn.diff: + Fix memory map for ia64/discontmem for kdump. +* Mon Sep 01 2008 olh@suse.de +- Updated to 2.6.27-rc5-git2 +* Fri Aug 29 2008 jeffm@suse.de +- Updated to 2.6.27-rc5. + - Eliminated 2 patches. + - KDB has an incompatible change on x86_64, so kernel-debug + will fail there. +* Fri Aug 29 2008 olh@suse.de +- update message in post.sh to display also the rpm FLAVOR +* Thu Aug 28 2008 olh@suse.de +- update patches.suse/dm-raid45-2.6.25-rc2_20080221.patch + rename rh_init to region_hash_init to avoid conflict + with existing powerpc symbol on powerpc +* Thu Aug 28 2008 olh@suse.de +- disable musb, not useful, does not compile +* Tue Aug 26 2008 trenn@suse.de + Vendor specific drivers vs generic video driver. + Distinguish which ACPI driver should do backlight switching. + This patch series is queued up for 2.6.28 in the ACPI branch: +- patches.arch/0000-ACPI-video-Ignore-devices-not-present.patch: + ACPI: video: Ignore devices that aren't present in hardware. +- patches.arch/0001-Check-for-ACPI-backlight-support.patch: Check + for ACPI backlight support otherwise use vendor ACPI drivers. +- patches.arch/0002-Acer-WMI-fingers-off-backlight-video.ko.patch: + Acer-WMI: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0003-Asus-acpi-fingers-off-backlight.patch: + asus-acpi: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0004-Compal-fingers-off-backlight.patch: compal: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0005-eeepc-laptop-fingers-off.patch: eeepc-laptop: + fingers off backlight if video.ko is serving this functionality. +- patches.arch/0006-fujitsu-laptop-fingers-off-backlight.patch: + fujitsu-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0007-msi-laptop-fingers-off-backlight.patch: + msi-laptop: fingers off backlight if video.ko is serving this + functionality. +- patches.arch/0008-sony-laptop-fingers-off-backlight.patch: + sony-laptop: fingers off backlight if video.ko is serving + this functionality. +- patches.arch/0009-thinkpad_acpi-fingers-off-backlight.patch: + thinkpad_acpi: fingers off backlight if video.ko is serving + this functionality. + I had to refresh these. While one patch was broken, + two lines were missing, "patch" from 11.0 still worked, while + "patch" from 10.3 did not: +- patches.xen/add-console-use-vt: add console_use_vt. +- patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch: + kexec: Move asm segment handling code to the assembly file + (i386). +* Mon Aug 25 2008 jeffm@suse.de +- Disabled patches.kernel.org/ia64-asm-nr-irqs +* Mon Aug 25 2008 jeffm@suse.de +- patches.fixes/pseries-compile-fix: pseries: compile fix. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/musb-powerpc-conflict: musb: compile fix + for powerpc. +* Mon Aug 25 2008 jeffm@suse.de +- patches.kernel.org/ia64-asm-nr-irqs: ia64: nr-irqs.h generation + should place it in arch/../asm. +* Mon Aug 25 2008 jeffm@suse.de +- Update config files. +* Mon Aug 25 2008 jeffm@suse.de +- Updated to 2.6.27-rc4. + - Refreshed context. +* Mon Aug 25 2008 trenn@suse.de +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch: + x86, pci: introduce pci=noioapicquirk kernel cmdline option. + Mysterious patch problem in include/asm-x86/pci.h +- patches.fixes/acpi-clear-wake-status.patch: Clear wak_sts + register on resume. +* Mon Aug 25 2008 trenn@suse.de +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + Delete. +* Mon Aug 25 2008 jbeulich@novell.com +- Update Xen patches to 2.6.27-rc4. +- patches.xen/xen-x86_64-dump-user-pgt: dump the correct page + tables for user mode faults. +- patches.xen/xen-x86_64-pgd-alloc-order: don't require order-1 + allocations for pgd-s. +- patches.xen/xen-x86_64-pgd-pin: make pinning of pgd pairs + transparent to callers. +- patches.xen/xen-blktap-write-barriers: blktap: Write Barriers. +- patches.xen/xen-x86-pmd-handling: consolidate pmd/pud/pgd entry + handling. +- patches.xen/xen-x86-bigmem: fix issues with the assignment of + huge amounts of memory. +- patches.xen/xen-msix-restore: print at least a message if MSI-X + restore failed. +- config.conf: Re-enable Xen. +- patches.xen/sfc-i2c: Delete. +- Update config files. +* Fri Aug 22 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Adjust and re-enable. +- Update config files. +* Tue Aug 19 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: Delete. +* Tue Aug 19 2008 jeffm@suse.de +- Removed unused patches. +* Tue Aug 19 2008 tiwai@suse.de +- Update config files: Use CONFIG_INPUT_PCSPKR=m (bnc#225221) +* Mon Aug 18 2008 schwab@suse.de +- Update config files. +* Mon Aug 18 2008 schwab@suse.de +- Update kdb patches. +* Fri Aug 15 2008 tiwai@suse.de +- patches.arch/ppc-ipic-suspend-without-83xx-fix: Fix build_error + without CONFIG_PPC_83xx. +- Update config files. +* Fri Aug 15 2008 tiwai@suse.de +- Update config files: disable CONFIG_IPIC for ppc/default and + vanilla again to fix build +* Fri Aug 15 2008 tiwai@suse.de +- rpm/kernel-binary.spec.in: fix build without firmware files +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/no-include-asm: kbuild: correctly link + include/asm in external builds. +* Fri Aug 15 2008 jeffm@suse.de +- patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: + ath9k: work around gcc ICE again. +* Thu Aug 14 2008 jeffm@suse.de +- patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay + conflict. +* Thu Aug 14 2008 jeffm@suse.de +- Enabled patches.kernel.org/firmware-path +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Fixed duplicate + export of security_inode_permission. +* Thu Aug 14 2008 jeffm@suse.de +- patches.apparmor/add-security_path_permission: Add missing + stub for security_path_permission when CONFIG_SECURITY_APPARMOR=n +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/firmware-path: firmware: Allow + release-specific firmware dir. +- rpm/kernel-binary.spec.in: Add firmware files. +* Thu Aug 14 2008 jeffm@suse.de +- patches.kernel.org/ia64-export-cpu_core_map: ia64: Export + cpu_core_map for topology_core_siblings. +* Thu Aug 14 2008 jeffm@suse.de +- Updated to 2.6.27-rc3. + - AppArmor mostly merged. There may be some hiccups. + - Xen and RT temporarily disabled for merging. + - 17 patches eliminated. +* Thu Aug 14 2008 ghaskins@suse.de + Guarded by +RT +- patches.rt/seqlock-make-raw-seqlocks-spin-during-write.patch: + seqlock: make sure that raw_seqlock_t retries readers while + writes are pending. +- patches.rt/ftrace-fix-elevated-preempt-count-in-wakeup-tracer.patch: + ftrace: fix elevated preempt_count in wakeup-tracer. +* Fri Aug 08 2008 hare@suse.de +- Update config files for RT kernel to activate SCSI + device handler. +* Fri Aug 08 2008 jbeulich@novell.com +- patches.xen/xen3-fixup-common, patches.xen/xen3-fixup-kconfig, + patches.xen/xen3-patch-2.6.24, patches.xen/xen3-patch-2.6.25: Fix + a couple of bugs and inconsistencies. +* Fri Aug 08 2008 schwab@suse.de +- Fix reference to $RPM_BUILD_ROOT in makefiles. +* Fri Aug 08 2008 hare@suse.de +- patches.fixes/dm-mpath-hp-sw.patch: Delete. +- Update config files. +- patches.fixes/dm-2.6.27-update: Upstream device-mapper patches + (FATE#302108). +- patches.fixes/scsi_dh-2.6.27-update: SCSI device handler update + (FATE#302269,FATE#303696,FATE#303754,FATE#304125). +- patches.suse/rq-based-block-layer: rq-based multipathing: + block layer changes (FATE#302108). +- patches.suse/rq-based-dm-interface: rq-based multipathing: + device-mapper interface (FATE#302108). +- patches.suse/rq-based-multipath-functions: rq-based + multipathing: request-based functions to multipath + (FATE#302108). +* Thu Aug 07 2008 jbeulich@novell.com +- Update Xen patches to c/s 623. +- patches.xen/sfc-network-driver: Delete. +- patches.xen/xen-balloon-hvm-min: Delete. +- patches.xen/xen-netfront-flip-prod: Delete. +- patches.xen/xen-x86_64-init-cleanup: Delete. +- patches.xen/sfc-i2c: sfc: Use kernel I2C system and i2c-algo-bit + driver (disabled). +- patches.xen/sfc-driverlink: Solarflare: Resource driver (disabled). +- Update Xen config files. +* Wed Aug 06 2008 olh@suse.de +- add patches.suse/ppc-no-LDFLAGS_MODULE.patch + do not link external modules against arch/powerpc/lib/crtsavres.o +* Tue Aug 05 2008 jeffm@suse.de +- patches.fixes/reiserfs-commit-ids-unsigned-ints: reiserfs: + audit transaction ids to always be unsigned ints (bnc#410847). +* Tue Aug 05 2008 jeffm@suse.de +- README.BRANCH: Took ownership of 11.1 tree. +* Tue Aug 05 2008 jeffm@suse.de +- README: Changed w3d links to wiki links. +* Tue Aug 05 2008 ghaskins@suse.de + Fixed misnamed rt_trace to rt_timing +- config/x86_64/rt_trace: Delete. +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Added x86_64/rt_trace kernel flavor (based on ftrace) +- Update config files. +- config.conf: +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Fix rtmutex-tester build problem with rt_debug +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +* Tue Aug 05 2008 ghaskins@suse.de + Guarded by +RT +- Remove version.patch to stop build breakage +* Tue Aug 05 2008 jjohansen@suse.de +- update apparmor patches with fixes for + - broken getcwd (bnc#413915) + - ref counting bug in getcwd and d_namespace_path when used + on disconnected paths (bnc#414607) + - typeo in patches that keep selinux from compiling (bnc#414609) + - incorporate smack patch into base apparmor patches, so + that smack can be built (bnc#414610) +* Tue Aug 05 2008 jslaby@suse.de +- patches.fixes/ath5k-fix-memory-corruption.patch: Ath5k: fix + memory corruption (bnc#414635). +- patches.fixes/ath5k-kill-tasklets-on-shutdown.patch: Ath5k: + kill tasklets on shutdown (bnc#414638). +* Mon Aug 04 2008 gregkh@suse.de +- README.BRANCH: added file. +* Mon Aug 04 2008 olh@suse.de +- disable CONFIG_SECURITY_ROOTPLUG because /init in initrd will + not run if USB is compiled in and a specific USB device is not + present +* Mon Aug 04 2008 jslaby@suse.de +- patches.fixes/tpm-write-data-types.patch: tpm: Use correct + data types for sizes in tpm_write() and tpm_read() (bnc#400211). +* Fri Aug 01 2008 ghaskins@suse.de + PI rework v0.5 and a fix from upstream for 26-rt1 +- patches.rt/26-rt1-chirag.patch: This patch should solve some + of the bug messages.. +- patches.rt/add-generalized-pi-interface.patch: add generalized + priority-inheritance interface. +- patches.rt/tie-pi-into-task.patch: sched: add the basic PI + infrastructure to the task_struct. +- patches.rt/rtmutex-initialize-waiters.patch: rtmutex: formally + initialize the rt_mutex_waiters. +- patches.rt/rtmutex-add_readers.patch: RT: wrap the rt_rwlock + "add reader" logic. +- patches.rt/rtmutex-use-runtime-init.patch: rtmutex: use runtime + init for rtmutexes. +- patches.rt/rtmutex-convert-to-libpi.patch: rtmutex: convert + rtmutexes to fully use the PI library. +- patches.rt/rtmutex-defer-pi-until-sleepy.patch: rtmutex: + pi-boost locks as late as possible. +* Fri Aug 01 2008 schwab@suse.de +- Reenable EFI_RTC. +* Fri Aug 01 2008 trenn@suse.de +- Update config files. + Unset on forgotten archs: + CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +* Fri Aug 01 2008 trenn@suse.de +- patches.fixes/x86_hpet_amd_quirk.patch: Workaround a hpet BIOS + bug which is common on latest AMD driven boards (bnc#387053). +* Fri Aug 01 2008 sassmann@suse.de + Add boot interrupt patches from linux-2.6-tip +- patches.arch/x86-acpi-reroute-PCI-interrupt-to-legacy-boot-interrupt.patch +- patches.arch/x86-add-PCI-IDs-for-devices-that-need-boot-irq-quirk.patch +- patches.arch/x86-disable-AMD-ATI-boot-interrupt-generation.patch +- patches.arch/x86-disable-broadcomm-boot-interrupt-generation.patch +- patches.arch/x86-disable-intel-boot-interrupt-generation.patch +- patches.arch/x86-introduce-config-option-for-pci-reroute-quirks.patch +- patches.arch/x86-introduce-pci-ioapicreroute-kernel-cmdline.patch +- patches.arch/x86-introduce-pci-noioapicquirk-kernel-cmdline.patch +- Update config files. + * reroute of boot interrupts is enabled for RT only! +* Thu Jul 31 2008 sdietrich@suse.de + Update to 2.6.26-rt1: +- config.conf: Enable i386/x86_64 - RT / RT_debug +- Update config files: + * Sync to default config. + * Disable (broken): + - Novell Netware Filesystem support (novfs) (EXPERIMENTAL) (NOVFS) + - ISP 1760 HCD support (USB_ISP1760_HCD) + - KDB + - QLogic InfiniPath Driver (INFINIBAND_IPATH) + Remove obsolete patches: +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-omap-03.patch: Delete. +- patches.rt/arm-omap-04.patch: Delete. +- patches.rt/disable-sched-rt-groups.patch: Delete. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Delete. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: Delete. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Delete. +- patches.rt/drivers-edac-new-amd64.patch: Delete. +- patches.rt/drivers-edac-new-k8-rev-f.patch: Delete. +- patches.rt/drivers-edac-prevent-potential-printk-storm: Delete. +- patches.rt/drivers-edac-test_device.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/fix-alternate_node_alloc.patch: Delete. +- patches.rt/fix-irq-flags-size.patch: Delete. +- patches.rt/foo.patch: Delete. +- patches.rt/ftrace-add-nr_syscalls.patch: Delete. +- patches.rt/ftrace-alloc-pages.patch: Delete. +- patches.rt/ftrace-cpu-clock-update.patch: Delete. +- patches.rt/ftrace-debug-use-preempt-disable-notrace.patch: + Delete. +- patches.rt/ftrace-direct-calls.patch: Delete. +- patches.rt/ftrace-disable-daemon.patch: Delete. +- patches.rt/ftrace-dont-use-raw-irq-save.patch: Delete. +- patches.rt/ftrace-eventtrace-fixup.patch: Delete. +- patches.rt/ftrace-filter-functions.patch: Delete. +- patches.rt/ftrace-fix-ip.patch: Delete. +- patches.rt/ftrace-flip-fix.patch: Delete. +- patches.rt/ftrace-handle-time-outside-of-lockdep.patch: Delete. +- patches.rt/ftrace-irqsoff-smp-processor-id-fix.patch: Delete. +- patches.rt/ftrace-lockdep-notrace-annotations.patch: Delete. +- patches.rt/ftrace-max-update-fixes.patch: Delete. +- patches.rt/ftrace-move-memory-management-to-generic.patch: + Delete. +- patches.rt/ftrace-nop-calls.patch: Delete. +- patches.rt/ftrace-peterz-cpu_clock.patch: Delete. +- patches.rt/ftrace-remove-max-printks.patch: Delete. +- patches.rt/ftrace-safe-traversal-hlist.patch: Delete. +- patches.rt/ftrace-stop-function-trace-fix.patch: Delete. +- patches.rt/ftrace-unlock-mutex-in-output.patch: Delete. +- patches.rt/ftrace-update-cnt-stat-fix.patch: Delete. +- patches.rt/ftracer-build-fix.patch: Delete. +- patches.rt/futex-performance-hack-sysctl-fix.patch: Delete. +- patches.rt/futex-performance-hack.patch: Delete. +- patches.rt/git-ignore-module-markers.patch: Delete. +- patches.rt/irq-flags-unsigned-long.patch: Delete. +- patches.rt/kernel-bug-after-entering-something-from-login.patch: + Delete. +- patches.rt/kthread-cpus-allowed-init.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/netfilter-more-debugging.patch: Delete. +- patches.rt/page-alloc-use-real-time-pcp-locking-for-page-draining.patch: + Delete. +- patches.rt/pcounter-percpu-protect.patch: Delete. +- patches.rt/percpu-locked-powerpc-fixups-a6.patch: Delete. +- patches.rt/powerpc-rearrange-thread-flags-to-work-with-andi-instruction.patch: + Delete. +- patches.rt/ppc-add-mcount.patch: Delete. +- patches.rt/ppc-add-ppc32-mcount.patch: Delete. +- patches.rt/ppc-mark-notrace-mainline.patch: Delete. +- patches.rt/ppc-mcount-dummy-functions.patch: Delete. +- patches.rt/ppc-rename-xmon-mcount.patch: Delete. +- patches.rt/ppc-select-mcount.patch: Delete. +- patches.rt/preempt-irqs-ppc-celleb-beatic-eoi.patch: Delete. +- patches.rt/preempt-irqs-softirq-in-hardirq.patch: Delete. +- patches.rt/preempt-realtime-powerpc-a7.patch: Delete. +- patches.rt/preempt-realtime-ppc-more-resched-fixups.patch: + Delete. +- patches.rt/preempt-realtime-ppc-need-resched-delayed.patch: + Delete. +- patches.rt/preempt-realtime-sh.patch: Delete. +- patches.rt/preempt-realtime-supress-cpulock-warning.patch: + Delete. +- patches.rt/rcu-preempt-trace-markers-1.patch: Delete. +- patches.rt/rcu-preempt-trace-markers-2.patch: Delete. +- patches.rt/rcu-various-fixups.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-delayed-resched.patch: Delete. +- patches.rt/rt-mutex-drop-generic-TIF_NEED_RESCHED_DELAYED.patch: + Delete. +- patches.rt/rt-time-starvation-fix.patch: Delete. +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/sched-fix-rt-task-wakeup.patch: Delete. +- patches.rt/sched-fix-sched-fair-wakeup.patch: Delete. +- patches.rt/sched-rt-push-only-new.patch: Delete. +- patches.rt/schedule_on_each_cpu-enhance-rt.patch: Delete. +- patches.rt/tasklet-fix-preemption-race.patch: Delete. +- patches.rt/tasklet-more-fixes.patch: Delete. +- patches.rt/time-gcc-linker-error.patch: Delete. +- patches.rt/tracer-use-sched-clock.patch: Delete. +- patches.rt/write-try-lock-irqsave.patch: Delete. +- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete. + Introduce 2.6.26-RT1: +- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch: + Linux-RT 2.6.26-RT + radix-tree: gang slot lookups. +- patches.rt/2.6.21-rc6-lockless5-lockless-probe.patch: Linux-RT + 2.6.26-RT + mm: lockless probe. +- patches.rt/2.6.21-rc6-lockless6-speculative-get-page.patch: + Linux-RT 2.6.26-RT + mm: speculative get page. +- patches.rt/2.6.21-rc6-lockless7-lockless-pagecache-lookups.patch: + Linux-RT 2.6.26-RT + mm: lockless pagecache lookups. +- patches.rt/2.6.21-rc6-lockless8-spinlock-tree_lock.patch: + Linux-RT 2.6.26-RT + mm: spinlock tree_lock. +- patches.rt/Add-dev-rmem-device-driver-for-real-time-JVM-testing.patch: + Linux-RT 2.6.26-RT. +- patches.rt/Allocate-RTSJ-memory-for-TCK-conformance-test.patch: + Linux-RT 2.6.26-RT. +- patches.rt/RT_utsname.patch: Linux-RT 2.6.26-RT. +- patches.rt/aacraid-compat-sem.patch: Linux-RT 2.6.26-RT. +- patches.rt/adapt-remove-extra-try-to-lock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-adjust-pi-wakeup.patch: Linux-RT 2.6.26-RT. +- patches.rt/adaptive-earlybreak-on-steal.patch: Linux-RT + 2.6.26-RT + rtmutex: break out early on first run. +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch: Linux-RT + 2.6.26-RT. +- patches.rt/adaptive-spinlock-lite-v2.patch: Linux-RT 2.6.26-RT + adaptive spinlocks lite. +- patches.rt/adaptive-task-oncpu.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-dumpstack.patch: Linux-RT 2.6.26-RT. +- patches.rt/apic-level-smp-affinity.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-compile-fix.patch: Linux-RT 2.6.26-RT + ARM: compile fix for event tracing. +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch: + Linux-RT 2.6.26-RT. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-latency-tracer-support.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-02.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-omap-05.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-preempt-config.patch: Linux-RT 2.6.26-RT. +- patches.rt/arm-trace-preempt-idle.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-state-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/bh-uptodate-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/cache_pci_find_capability.patch: Linux-RT 2.6.26-RT + Cache calls to pci_find_capability. +- patches.rt/call_rcu_bh-rename-of-call_rcu.patch: Linux-RT + 2.6.26-RT + just rename call_rcu_bh instead of making it a macro. +- patches.rt/cond_resched_softirq-WARN-fix.patch: Linux-RT + 2.6.26-RT + WARNING: at kernel/sched.c:5071 2.6.23-rc1-rt7. +- patches.rt/cputimer-thread-rt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/cputimer-thread-rt_A0.patch: Linux-RT 2.6.26-RT. +- patches.rt/cycles-to-ns-trace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/dev-queue-xmit-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-irqpoll.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-ist-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/disable-lpptest-on-nonlinux.patch: Linux-RT + 2.6.26-RT. +- patches.rt/disable-run-softirq-from-hardirq-completely.patch: + Linux-RT 2.6.26-RT + Disable running softirqs from hardirqs completely!. +- patches.rt/dont-disable-preemption-without-IST.patch: Linux-RT + 2.6.26-RT. +- patches.rt/dont-let-rt-rw_semaphores-do-non_owner-locks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/dont-unmask-io_apic.patch: Linux-RT 2.6.26-RT. +- patches.rt/drain-all-local-pages-via-sched.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-tracer-syscall-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/event-tracer-syscall-x86_64.patch: Linux-RT + 2.6.26-RT. +- patches.rt/export-schedule-on-each-cpu.patch: Linux-RT + 2.6.26-RT. +- patches.rt/filemap-dont-bug-non-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-acpi-build-weirdness.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-bug-on-in-filemap.patch: Linux-RT 2.6.26-RT + Change bug_on for atomic to pagefault_disabled.. +- patches.rt/fix-circular-locking-deadlock.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-compilation-for-non-RT-in-timer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/fix-emac-locking-2.6.16.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-emergency-reboot.patch: Linux-RT 2.6.26-RT + call reboot notifier list when doing an emergency reboot. +- patches.rt/fix-migrating-softirq.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-softirq-checks-for-non-rt-preempt-hardirq.patch: + Linux-RT 2.6.26-RT. +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch: Linux-RT 2.6.26-RT. +- patches.rt/floppy-resume-fix.patch: Linux-RT 2.6.26-RT + floppy: suspend/resume fix. +- patches.rt/ftrace-compile-fixes.patch: Linux-RT 2.6.26-RT + rt: remove call to stop tracer. +- patches.rt/ftrace-dont-trace-markers.patch: Linux-RT 2.6.26-RT + ftrace: dont trace markers. +- patches.rt/ftrace-fix-header.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-function-record-nop.patch: Linux-RT 2.6.26-RT + ftrace: define function trace nop. +- patches.rt/ftrace-print-missing-cmdline.patch: Linux-RT + 2.6.26-RT + ftrace: fix the command line printing. +- patches.rt/ftrace-record-comm-on-ctrl.patch: Linux-RT 2.6.26-RT + ftrace: record comm on function ctrl change. +- patches.rt/ftrace-trace-sched.patch: Linux-RT 2.6.26-RT + ftrace: trace sched.c. +- patches.rt/ftrace-upstream.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-use-preempt-disable-not-irq-disable.patch: + Linux-RT 2.6.26-RT + ftrace: avoid lockdep recursion. +- patches.rt/gcc-warnings-shut-up.patch: Linux-RT 2.6.26-RT. +- patches.rt/genhd-protect-percpu-var.patch: Linux-RT 2.6.26-RT. +- patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.26-RT + x86: activate HARDIRQS_SW_RESEND. +- patches.rt/git-ignore-script-lpp.patch: Linux-RT 2.6.26-RT. +- patches.rt/gtod-optimize.patch: Linux-RT 2.6.26-RT. +- patches.rt/hack-convert-i_alloc_sem-for-direct_io-craziness.patch: + Linux-RT 2.6.26-RT. +- patches.rt/hack-fix-rt-migration.patch: Linux-RT 2.6.26-RT. +- patches.rt/handle-pending-in-simple-irq.patch: Linux-RT + 2.6.26-RT + handle IRQ_PENDING for simple irq handler. +- patches.rt/highmem-redo-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem-revert-mainline.patch: Linux-RT 2.6.26-RT. +- patches.rt/highmem_rewrite.patch: Linux-RT 2.6.26-RT + mm: remove kmap_lock. +- patches.rt/hrtimer-no-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/hrtimers-overrun-api.patch: Linux-RT 2.6.26-RT. +- patches.rt/i386-mark-atomic-irq-ops-raw.patch: Linux-RT + 2.6.26-RT. +- patches.rt/i386-nmi-watchdog-show-regs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ioapic-fix-too-fast-clocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/irda-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/irq-mask-fix.patch: Linux-RT 2.6.26-RT + genirq: fix simple and fasteoi irq handlers. +- patches.rt/jbd_assertions_smp_only.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-i386-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kmap-atomic-prepare.patch: Linux-RT 2.6.26-RT. +- patches.rt/kprobes-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/kstat-add-rt-stats.patch: Linux-RT 2.6.26-RT + add rt stats to /proc/stat. +- patches.rt/kstat-fix-spurious-system-load-spikes-in-proc-loadavgrt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/latency-measurement-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/latency-tracing-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/latency-tracing-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/loadavg_fixes_weird_loads.patch: Linux-RT 2.6.26-RT. +- patches.rt/local_irq_save_nort-in-swap.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lock-init-plist-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/lock_list.patch: Linux-RT 2.6.26-RT + lock_list - a fine grain locked double linked list. +- patches.rt/lock_page_ref.patch: Linux-RT 2.6.26-RT + mm: lock_page_ref. +- patches.rt/lockdep-avoid-fork-waring.patch: Linux-RT 2.6.26-RT + ftrace: fix if define to prove locking. +- patches.rt/lockdep-lock_set_subclass.patch: Linux-RT 2.6.26-RT + lockdep: lock_set_subclass - reset a held lock's subclass. +- patches.rt/lockdep-more-entries.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockdep-prettify.patch: Linux-RT 2.6.26-RT + lockdep: prettify output. +- patches.rt/lockdep-rt-mutex.patch: Linux-RT 2.6.26-RT + lockdep-rt: annotate PREEMPT_RT DEFINE_MUTEX. +- patches.rt/lockdep-rt-recursion-limit-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockdep-show-held-locks.patch: Linux-RT 2.6.26-RT + lockdep: show held locks when showing a stackdump. +- patches.rt/lockdep_lock_set_subclass_fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/lockstat-fix-contention-points.patch: Linux-RT + 2.6.26-RT + lockstat: fix contention points. +- patches.rt/lockstat-output.patch: Linux-RT 2.6.26-RT + lockstat: warn about disabled lock debugging. +- patches.rt/lockstat-rt-hooks.patch: Linux-RT 2.6.26-RT. +- patches.rt/lockstat_bounce_rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/loopback-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/mapping_nrpages.patch: Linux-RT 2.6.26-RT + mm/fs: abstract address_space::nrpages. +- patches.rt/mips-change-raw-spinlock-type.patch: Linux-RT + 2.6.26-RT + RT: change from raw_spinlock_t to __raw_spinlock_t. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Linux-RT 2.6.26-RT + RT: remove conflicting rtc_lock declaration. +- patches.rt/mips-remove-duplicate-kconfig.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mips-remove-finish-arch-switch.patch: Linux-RT + 2.6.26-RT + RT: remove finish_arch_switch. +- patches.rt/mitigate-resched-flood.patch: Linux-RT 2.6.26-RT. +- patches.rt/mm-concurrent-pagecache-rt.patch: Linux-RT 2.6.26-RT + mm: -rt bits for concurrent pagecache. +- patches.rt/mm-concurrent-pagecache.patch: Linux-RT 2.6.26-RT + mm: concurrent pagecache write side. +- patches.rt/mm-fix-latency.patch: Linux-RT 2.6.26-RT + reduce pagetable-freeing latencies. +- patches.rt/move-native-irq.patch: Linux-RT 2.6.26-RT. +- patches.rt/msi-suspend-resume-workaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/multi-reader-account.patch: Linux-RT 2.6.26-RT + map tasks to reader locks held. +- patches.rt/multi-reader-limit.patch: Linux-RT 2.6.26-RT + implement reader limit on read write locks. +- patches.rt/multi-reader-lock-account.patch: Linux-RT 2.6.26-RT + map read/write locks back to their readers. +- patches.rt/multi-reader-pi.patch: Linux-RT 2.6.26-RT + read lock Priority Inheritance implementation. +- patches.rt/native-sched-clock-booboo.patch: Linux-RT 2.6.26-RT. +- patches.rt/neptune-no-at-keyboard.patch: Linux-RT 2.6.26-RT. +- patches.rt/net-core-preempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/netpoll-8139too-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/new-softirq-code.patch: Linux-RT 2.6.26-RT + softirq preemption: optimization. +- patches.rt/nf_conntrack-fix-smp-processor-id.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nf_conntrack-weird-crash-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/nmi-profiling-base.patch: Linux-RT 2.6.26-RT + nmi-driven profiling for /proc/profile. +- patches.rt/nmi-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-show-regs-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-disable.patch: Linux-RT 2.6.26-RT + x86_64: do not enable the NMI watchdog by default. +- patches.rt/nmi-watchdog-fix-1.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-2.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-3.patch: Linux-RT 2.6.26-RT. +- patches.rt/nmi-watchdog-fix-4.patch: Linux-RT 2.6.26-RT. +- patches.rt/no-warning-for-irqs-disabled-in-local-bh-enable.patch: + Linux-RT 2.6.26-RT + local_bh_enable() is safe for irqs_disabled(). +- patches.rt/ntfs-local-irq-save-nort.patch: Linux-RT 2.6.26-RT. +- patches.rt/numa-slab-freeing.patch: Linux-RT 2.6.26-RT. +- patches.rt/only-run-softirqs-from-irq-thread-when-irq-affinity-is-set.patch: + Linux-RT 2.6.26-RT. +- patches.rt/pagefault-disable-cleanup.patch: Linux-RT 2.6.26-RT + clean up the page fault disabling logic. +- patches.rt/panic-dont-stop-box.patch: Linux-RT 2.6.26-RT. +- patches.rt/paravirt-function-pointer-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/pause-on-oops-head-tail.patch: Linux-RT 2.6.26-RT + introduce pause_on_oops_head/tail boot options. +- patches.rt/percpu-locked-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-netfilter2.patch: Linux-RT 2.6.26-RT. +- patches.rt/percpu-locked-powerpc-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/percpu_list.patch: Linux-RT 2.6.26-RT + percpu_list. +- patches.rt/plist-debug.patch: Linux-RT 2.6.26-RT. +- patches.rt/posix-cpu-timers-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/powerpc-count_active_rt_tasks-is-undefined-for-non-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-flush_tlb_pending-is-no-more.patch: + Linux-RT 2.6.26-RT. +- patches.rt/powerpc-match-__rw_yield-function-declaration-to-prototype.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-chpr-set-rtc-lock.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-gtod-notrace-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-hacks-to-allow-rt-to-run-kernbench.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ppc-make-tlb-batch-64-only.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc-tlbflush-preempt.patch: Linux-RT 2.6.26-RT. +- patches.rt/ppc32-latency-compile-hack-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ppc32_notrace_init_functions.patch: Linux-RT + 2.6.26-RT + don't trace early init functions for ppc32. +- patches.rt/preempt-irqs-Kconfig.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-direct-debug-keyboard.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-hrtimer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-idle-poll-loop-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-i386-ioapic-mask-quirk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-ack-irq-fixups.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b5.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-b6.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-fix-more-fasteoi.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-irqs-ppc-preempt-schedule-irq-entry-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64-ioapic-mask-quirk.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-acpi.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-bagde4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-footbridge.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-integrator.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-arm-pxa.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm-shark.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-compile-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-console.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-debug-sysctl.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-fs-block.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ftrace.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ia64.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ide.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-init-show-enabled-debugs.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-input.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-ipc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-irqs.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-loopback.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mellanox-driver-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mmdrop-delayed.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-drivers.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-net-softirq-fixups.patch: Linux-RT + 2.6.26-RT + NOHZ: local_softirq_pending with tickless. +- patches.rt/preempt-realtime-net.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-add-raw-relax-macros.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b3.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-b4.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-celleb-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-missing-raw-spinlocks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-tlb-batching.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc-update.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-powerpc.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-prevent-idle-boosting.patch: + Linux-RT 2.6.26-RT + Premmpt-RT: Preevent boosting of idle task. +- patches.rt/preempt-realtime-printk.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-profiling.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rawlocks.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-rcu.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sched-cpupri.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched-i386.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-sound.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-nohz-softirq-warning.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-supress-rtc-printk.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-realtime-timer.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-usb.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-warn-and-bug-on.patch: Linux-RT + 2.6.26-RT. +- patches.rt/preempt-rt-no-slub.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-softirqs-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/preempt-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/print-might-sleep-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-dont-bug-on-sched.patch: Linux-RT 2.6.26-RT. +- patches.rt/printk-in-atomic-hack-fix.patch: Linux-RT 2.6.26-RT + fix printk in atomic hack. +- patches.rt/printk-in-atomic.patch: Linux-RT 2.6.26-RT. +- patches.rt/proportions-raw-locks.patch: Linux-RT 2.6.26-RT. +- patches.rt/qrcu.patch: Linux-RT 2.6.26-RT + QRCU with lockless fastpath. +- patches.rt/quicklist-release-before-free-page-fix.patch: + Linux-RT 2.6.26-RT. +- patches.rt/quicklist-release-before-free-page.patch: Linux-RT + 2.6.26-RT. +- patches.rt/radix-concurrent-lockdep.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-percpu-hack-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-concurrent.patch: Linux-RT 2.6.26-RT + radix-tree: concurrent write side support. +- patches.rt/radix-tree-optimistic-hist.patch: Linux-RT 2.6.26-RT + debug: optimistic lock histogram. +- patches.rt/radix-tree-optimistic.patch: Linux-RT 2.6.26-RT + radix-tree: optimistic locking. +- patches.rt/random-driver-latency-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-hrt-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-new-7.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-default.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-boost-sdr.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-fix-bad-dyntick-accounting.patch: + Linux-RT 2.6.26-RT. +- patches.rt/rcu-preempt-hotplug-hackaround.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rcu-torture-preempt-update.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcu-trace-fix-free.patch: Linux-RT 2.6.26-RT. +- patches.rt/rcupreempt-boost-early-init.patch: Linux-RT + 2.6.26-RT. +- patches.rt/realtime-preempt-warn-about-tracing.patch: Linux-RT + 2.6.26-RT. +- patches.rt/relay-fix.patch: Linux-RT 2.6.26-RT + relay: fix timer madness. +- patches.rt/remove-check-pgt-cache-calls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/replace-bugon-by-warn-on.patch: Linux-RT 2.6.26-RT. +- patches.rt/root-domain-kfree-in-atomic.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-apis.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-avoid-deadlock-in-swap.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-delayed-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: propagate prio for delayed work. +- patches.rt/rt-kmap-scale-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-list-mods.patch: Linux-RT 2.6.26-RT + rt: list_splice2. +- patches.rt/rt-move-update-wall-time-back-to-do-timer.patch: + Linux-RT 2.6.26-RT + rt: move update_wall_time back to do timer. +- patches.rt/rt-mutex-arm.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-compat-semaphores.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-i386.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-irq-flags-checking.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-mips.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc-fix-a5.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-ppc.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-preempt-debugging.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-mutex-trivial-route-cast-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-trivial-tcp-preempt-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-mutex-x86-64.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-page_alloc.patch: Linux-RT 2.6.26-RT + rt-friendly per-cpu pages. +- patches.rt/rt-plist-mods.patch: Linux-RT 2.6.26-RT + rt: plist_head_splice. +- patches.rt/rt-s_files-kill-a-union.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-sched-groups.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-shorten-softirq-thread-names.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rt-slab-new.patch: Linux-RT 2.6.26-RT. +- patches.rt/rt-workqeue-prio.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue support. +- patches.rt/rt-workqueue-barrier.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: fix barriers. +- patches.rt/rt-wq-barrier-fix.patch: Linux-RT 2.6.26-RT + rt: PI-workqueue: wait_on_work() fixup. +- patches.rt/rt_mutex_setprio.patch: Linux-RT 2.6.26-RT + rt: rename rt_mutex_setprio to task_setprio. +- patches.rt/rtmutex-debug.h-cleanup.patch: Linux-RT 2.6.26-RT + lock debugging: clean up rtmutex-debug.h. +- patches.rt/rtmutex-lateral-steal.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-rearrange.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-remove-xchg.patch: Linux-RT 2.6.26-RT + rtmutex - remove double xchg. +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-implement-downgrade-write.patch: Linux-RT + 2.6.26-RT + rwlocks multi downgrade write. +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlocks-fix-no-preempt-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix non PREEMPT_RT case. +- patches.rt/rwlocks-multiple-readers.patch: Linux-RT 2.6.26-RT + implement rwlocks management. +- patches.rt/rwsems-multiple-readers.patch: Linux-RT 2.6.26-RT + add framework for multi readers on rwsems. +- patches.rt/s_files-pipe-fix.patch: Linux-RT 2.6.26-RT + s_files: free_write_pipe() fix. +- patches.rt/s_files-schedule_on_each_cpu_wq.patch: Linux-RT + 2.6.26-RT. +- patches.rt/s_files.patch: Linux-RT 2.6.26-RT + remove global files_lock. +- patches.rt/sched-clock-nmi.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-enable-irqs-in-preempt-in-notifier-call.patch: + Linux-RT 2.6.26-RT + CFS: enable irqs in fire_sched_in_preempt_notifier. +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-rt-stats.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: + Linux-RT 2.6.26-RT. +- patches.rt/sched-wake_up_idle_cpu-rt.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_prio.patch: Linux-RT 2.6.26-RT. +- patches.rt/sched_rt-fixup.patch: Linux-RT 2.6.26-RT. +- patches.rt/schedule-tail-balance-disable-irqs.patch: Linux-RT + 2.6.26-RT. +- patches.rt/schedule_on_each_cpu-enhance.patch: Linux-RT + 2.6.26-RT. +- patches.rt/select-error-leak-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/send-nmi-all-preempt-disable.patch: Linux-RT + 2.6.26-RT. +- patches.rt/seq-irqsave.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-locking-rt-cleanup.patch: Linux-RT 2.6.26-RT. +- patches.rt/serial-slow-machines.patch: Linux-RT 2.6.26-RT. +- patches.rt/slab-irq-nopreempt-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/smp-processor-id-fixups.patch: Linux-RT 2.6.26-RT. +- patches.rt/softirq-per-cpu-assumptions-fixes.patch: Linux-RT + 2.6.26-RT. +- patches.rt/softlockup-add-irq-regs-h.patch: Linux-RT 2.6.26-RT + core: make asm/irq_regs.h available on every platform. +- patches.rt/spinlock-trylock-cleanup-sungem.patch: Linux-RT + 2.6.26-RT. +- patches.rt/swap-spinlock-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-busy-loop-hack.patch: Linux-RT 2.6.26-RT. +- patches.rt/tasklet-redesign.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-freq-tweaks.patch: Linux-RT 2.6.26-RT. +- patches.rt/timer-warning-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-add-event-markers-arm.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-events-handle-syscalls.patch: Linux-RT + 2.6.26-RT. +- patches.rt/trace-histograms.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace_hist-divzero.patch: Linux-RT 2.6.26-RT + trace_hist.c: divide-by-zero problem (2). +- patches.rt/trace_hist-latediv.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-add-event-markers.patch: Linux-RT 2.6.26-RT. +- patches.rt/tracer-event-trace.patch: Linux-RT 2.6.26-RT. +- patches.rt/use-edge-triggered-irq-handler-instead-of-simple-irq.patch: + Linux-RT 2.6.26-RT + [AT91: PATCH]: Use edge triggered interrupt handling for + AT91-GPIO instead of simple_irq-handler. +- patches.rt/user-no-irq-disable.patch: Linux-RT 2.6.26-RT. +- patches.rt/version.patch: Linux-RT 2.6.26-RT + add -rt extra-version. +- patches.rt/vortex-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/watchdog_use_timer_and_hpet_on_x86_64.patch: + Linux-RT 2.6.26-RT. +- patches.rt/x86-64-tscless-vgettimeofday.patch: Linux-RT + 2.6.26-RT + x86_64 GTOD: offer scalable vgettimeofday. +- patches.rt/x86_64-tsc-sync-irqflags-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/event-trace-hrtimer-trace.patch: Linux-RT 2.6.26-RT + event-tracer: add clockevent trace. +- patches.rt/ftrace-hotplug-fix.patch: Linux-RT 2.6.26-RT + ftrace: cpu hotplug fix. +- patches.rt/ftrace-wakeup-rawspinlock.patch: Linux-RT 2.6.26-RT + ftrace: user raw spin lock for wakeup function trace. +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.26-RT. +- patches.rt/radix-tree-lockdep-plus1.patch: Linux-RT 2.6.26-RT + lockdep: add +1 to radix tree array. +- patches.rt/rwlock-fixes.patch: Linux-RT 2.6.26-RT + rwlock: fix pi_list race conditions. +- patches.rt/rwlock-prio-fix.patch: Linux-RT 2.6.26-RT + rwlock: reset prio on unlocks and wakeups. +- patches.rt/rwlock-torture.patch: Linux-RT 2.6.26-RT + rwlock: rwlock torture test. +- patches.rt/sched-cpupri-hotplug-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/sched-cpupri-priocount.patch: Linux-RT 2.6.26-RT. +- patches.rt/trace-eip2ip.patch: Linux-RT 2.6.26-RT + Re: 2.6.25.4-rt4. +- patches.rt/bz235099-idle-load-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/fix-adaptive-hack.patch: Linux-RT 2.6.26-RT + fix-adaptive-hack.patch. +- patches.rt/fix-a-previously-reverted-fix.patch: Linux-RT + 2.6.26-RT + Fix a previously reverted "fix". +- patches.rt/fix-config-debug-rt-mutex-lock-underflow-warnings.patch: + Linux-RT 2.6.26-RT + Fix CONFIG_DEBUG_RT_MUTEX lock underflow warnings. +- patches.rt/frace-use-tsc.patch: Linux-RT 2.6.26-RT. +- patches.rt/ftrace-document-event-tracer.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-document-update1.patch: Linux-RT 2.6.26-RT + ftrace: document updates. +- patches.rt/ftrace-fix-get-kprobe-wreckage.patch: Linux-RT + 2.6.26-RT + ftrace-fix-missing-kprobe-include.pathc. +- patches.rt/ftrace-m68knommu-add-FTRACE-support.patch: Linux-RT + 2.6.26-RT. +- patches.rt/ftrace-m68knommu-generic-stacktrace-function.patch: + Linux-RT 2.6.26-RT. +- patches.rt/ftrace-preempt-trace-check.patch: Linux-RT 2.6.26-RT + ftrace: only trace preempt off with preempt tracer. +- patches.rt/ftrace-stop-trace-on-crash.patch: Linux-RT 2.6.26-RT + fix-tracer-wreckage-wtf-is-this-code-all-features.patch. +- patches.rt/generic-cmpxchg-use-raw-local-irq-variant.patch: + Linux-RT 2.6.26-RT. +- patches.rt/idle2-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/idle-fix.patch: Linux-RT 2.6.26-RT. +- patches.rt/m68knommu_fixes_ontop_of_v2.6.26.patch: Linux-RT + 2.6.26-RT. +- patches.rt/m68knommu-make-cmpxchg-RT-safe.patch: Linux-RT + 2.6.26-RT. +- patches.rt/mapping_nrpages-fix.patch: Linux-RT 2.6.26-RT + mapping_nrpages-fix.patch. +- patches.rt/nfs-stats-miss-preemption.patch: Linux-RT 2.6.26-RT + nfs: fix missing preemption check. +- patches.rt/pmtmr-override.patch: Linux-RT 2.6.26-RT + pmtmr: allow command line override of ioport. +- patches.rt/powerpc-ftrace-stop-on-oops.patch: Linux-RT 2.6.26-RT + powerpc: ftrace stop on crash. +- patches.rt/ppc64-fix-preempt-unsafe-paths-accessing-per_cpu-variables.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-irqs-m68knommu-make-timer-interrupt-non-threaded.patch: + Linux-RT 2.6.26-RT. +- patches.rt/preempt-realtime-mm.patch~: Linux-RT 2.6.26-RT. +- patches.rt/raw-spinlocks-for-nmi-print.patch: Linux-RT + 2.6.26-RT. +- patches.rt/revert-preempt-bkl-revert.patch: Linux-RT 2.6.26-RT. +- patches.rt/rtmutex-debug-fix.patch: Linux-RT 2.6.26-RT + rtmutex-debug-fix.patch. +- patches.rt/rt-mutex-namespace.patch: Linux-RT 2.6.26-RT + rt-mutex-namespace.patch. +- patches.rt/rt-mutex-use-inline.patch: Linux-RT 2.6.26-RT + rt-mutex-cleanup.patch. +- patches.rt/rt-rwlock-conservative-locking.patch: Linux-RT + 2.6.26-RT + rwlock: be more conservative in locking reader_lock_count. +- patches.rt/rwlock-pi-lock-reader.patch: Linux-RT 2.6.26-RT. +- patches.rt/rwlock-protect-reader_lock_count.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix2.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-slowunlock-mutex-fix.patch: Linux-RT + 2.6.26-RT. +- patches.rt/rwlock-torture-no-rt.patch: Linux-RT 2.6.26-RT + rwlock: fix torture test to handle non-rt. +- patches.rt/sched-fix-dequeued-race.patch: Linux-RT 2.6.26-RT + sched-fix-dequeued-race.patch. +- patches.rt/serial-locking-rt-cleanup.patch~: Linux-RT 2.6.26-RT. +- patches.rt/sub-dont-disable-irqs.patch: Linux-RT 2.6.26-RT + rt: dont disable irqs in usb. +- patches.rt/trace-do-not-wakeup-when-irqs-disabled.patch: + Linux-RT 2.6.26-RT + trace-do-not-wakeup-when-irqs-disabled.patch. +- patches.rt/trace-ktime-scalar.patch: Linux-RT 2.6.26-RT + ftrace: print ktime values in readable form. +- patches.rt/warn-on-rt-scatterlist.patch: Linux-RT 2.6.26-RT + remove warn on for scatterlist in preempt rt. +* Tue Jul 29 2008 trenn@suse.de +- patches.arch/acpi_thermal_passive_blacklist.patch: Avoid + critical temp shutdowns on specific ThinkPad T4x(p) and R40 + (https://bugzilla.novell.com/show_bug.cgi?id=333043). +- patches.fixes/acpi_use_acpi_exception.patch: ACPI dock/bay: + Use ACPI_EXCEPTION instead of printk(KERN_ERR. +- patches.suse/acpi_provide_non_windows_osi_boot_param.patch: + ACPI: Provide a spec conform OSI interface to the BIOS. +* Tue Jul 29 2008 bphilips@suse.de +- rpm/kernel-binary.spec.in: uvcvideo merged. Add Obsoletes. +* Fri Jul 25 2008 mszeredi@suse.cz +- supported.conf: Mark fuse as supported. +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_MARKERS +* Thu Jul 24 2008 gregkh@suse.de +- Enable CONFIG_SECURITY_SELINUX +* Thu Jul 24 2008 agruen@suse.de +- Fix for using relative paths in /usr/src/linux-obj/$arch/ + $flavor/Makefile (bnc#409982). +* Fri Jul 18 2008 hare@suse.de +- Update config files for S/390. +* Thu Jul 17 2008 bwalle@suse.de +- patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: + kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO +* Thu Jul 17 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Removed Supplements handling + entirely. Use preamble instead. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.26: Fix 32-bit build. +* Thu Jul 17 2008 jbeulich@novell.com +- Update Xen patches for 2.6.26. +- patches.xen/540-blkif-nr-segments-check.patch: Delete. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: Delete. +- patches.xen/xen3-patch-2.6.25.1: Delete. +- Update i386 and x86-64 config files. +- config.conf: Re-enable Xen configs. +* Thu Jul 17 2008 jbeulich@novell.com +- patches.fixes/seccomp-disable-tsc-option: Also handle x86-64 (191123). +- Update x86-64 config files. +- patches.suse/raw_device_max_minors_param.diff: Fix uninitialized + return value. +- patches.apparmor/remove_suid.diff: Also handle fuse. +- supported.conf: Add e1000e, rtc-core, rtc-lib, and rtc-cmos. +* Mon Jul 14 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: Delete. +* Mon Jul 14 2008 olh@suse.de +- disable unused fsl-diu-fb driver +* Mon Jul 14 2008 jeffm@suse.de +- Updated to 2.6.26-final. +* Mon Jul 14 2008 bwalle@suse.de +- patches.fixes/move-crashkernel-reservation.diff: + x86: Move crashkernel reservation before dma32_reserve_bootmem(). +* Mon Jul 14 2008 rgoldwyn@suse.de +- Enable patches.suse/convert-novfs-to-open-soure-coding-standards.patch + Fix oops in novfs_daemon_lib_ioctl +* Fri Jul 11 2008 jeffm@suse.de +- Updated squashfs to v3.3. (bnc#373285) +* Thu Jul 10 2008 jeffm@suse.de +- Update config files: Enable raw devices on s390. +* Thu Jul 10 2008 jack@suse.cz +- patches.suse/raw_device_max_minors_param.diff: Allow setting + of number of raw devices as a module parameter (FATE 302178). +* Thu Jul 10 2008 jeffm@suse.de +- patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: + compile fix. +* Wed Jul 09 2008 jeffm@suse.de +- patches.suse/kdb-common: Removed obsolete file_lock_operations + printing. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with + -git5. +* Wed Jul 09 2008 jeffm@suse.de +- patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: + discard prealloc in reiserfs_delete_inode (bnc#389656). +* Wed Jul 09 2008 jeffm@suse.de +- Updated to 2.6.26-rc9-git5. + - Eliminated 2 patches. +* Wed Jul 09 2008 jbohac@suse.cz +- Update config files. +- patches.suse/netfilter-ip_conntrack_slp.patch: connection + tracking helper for SLP (fate#301134). +* Wed Jul 09 2008 olh@suse.de +- enable PHYP-assisted OS dump (fate#304131) +* Mon Jul 07 2008 trenn@suse.de +- patches.fixes/acpi_thermal_passive_cleanup.patch: Delete. +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-gericom-bellagio-to-nomux.patch: Input: + add Gericom Bellagio to nomux blacklist (bnc#404892). +* Wed Jul 02 2008 jkosina@suse.de +- patches.fixes/input-add-acer-aspire-1360-to-nomux.patch: Input: + add Acer Aspire 1360 to nomux blacklist (bnc#216857). +* Wed Jul 02 2008 jeffm@suse.de +- patches.apparmor/__d_path-keep-connected.diff + patches.apparmor/mount-consistent-__d_path.diff + patches.suse/kdb-ia64: Edited to apply with --fuzz=0 +- Added --fuzz=0 (-F0) to sequence-patch.sh and spec files +* Fri Jun 27 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: don't generate the makedumpfile.config + any more, the new kernel, kexec-tools and makedumpfile is able to + extract that information from the running kernel and pass it + as ELF NOTE (in /proc/vmcore) +* Thu Jun 26 2008 olh@suse.de +- add patches.arch/ppc-ibmebus-modalias.patch + autoload ehea and ehca (bnc#394602 - LTC44938) +* Thu Jun 26 2008 sdietrich@suse.de +- RT: Update config files - enable CONFIG_CGROUPS +* Thu Jun 26 2008 sdietrich@suse.de +- Update config files - enable CPUSETs support: + CONFIG_CGROUPS, CONFIG_CGROUP_NS, CONFIG_CGROUP_DEVICE, + CONFIG_CPUSET, CONFIG_CGROUP_CPUACCT, + CONFIG_RESOURCE_COUNTERS, CONFIG_MM_OWNER, + CONFIG_CGROUP_MEM_RES_CTLR, CONFIG_PROC_PID_CPUSET +- debug only: CONFIG_CGROUP_DEBUG +* Thu Jun 26 2008 jeffm@suse.de +- Updated to 2.6.26-rc8 + - Eliminated 1 patch. +* Wed Jun 25 2008 jeffm@suse.de +- rpm/kernel-module-subpackage: Added Supplements tag copying and added + coreutils and grep to Requires +- rpm/macros.kernel-source: Added kernel-syms to BuildRequires +* Wed Jun 25 2008 olh@suse.de +- enable 64K pages in config ppc64 (fate#304100) +- enable up to 1024 cpus in config ppc64 (fate#304180) +- enable up to 4 cpus in config kdump +- enable powermanagement in config ppc64 +- enable cell be cpufreq +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Update the list of i2c bus drivers. + - i2c-isa is gone. + - i2c-i810, i2c-prosavage and i2c-savage4 are deprecated and will + be removed soon, mark as unsupported. + - i2c-voodoo3 has very limited usefulness, mark as unsupported. + - i2c-powermac is new, mark as supported. +- supported.conf: Update the list of i2c chip drivers. + - ds1337, ds1374, rtc8564 and x1205 are gone (RTC drivers, moved + to drivers/rtc). + - pca9539, pcf8574 and pcf8575 are deprecated (new GPIO drivers + exist in drivers/gpio), mark as unsupported. + - ds1682, max6875 and tsl2550 are new, mark as supported. +* Wed Jun 25 2008 jdelvare@suse.de +- supported.conf: Add two new hwmon drivers (dme1737 and thmc50, + both unsupported.) +- supported.conf: Mark hwmon and hwmon-vid as supported. These are + simple, software-only utility modules, it makes little sense + to taint the kernel just because they are loaded. +* Mon Jun 23 2008 tiwai@suse.de +- disable CONFIG_SND_PCSP as it conflicts with input pcspkr and + disturbs the order of sound devices +* Mon Jun 23 2008 agruen@suse.de +- genksyms: add support for checking against a reference ABI. +* Wed Jun 18 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git5. + - Eliminated 2 patches. +* Fri Jun 13 2008 jeffm@suse.de +- Removed kABI reference symbols +- Restored make-symsets check for ignoring/tolerating kABI changes. +* Fri Jun 13 2008 jeffm@suse.de +- Update config files (vanilla). +* Fri Jun 13 2008 jeffm@suse.de +- Update config files. +* Fri Jun 13 2008 jeffm@suse.de +- Updated to 2.6.26-rc6-git1. + - Eliminated 2 patches. +* Thu Jun 12 2008 sdietrich@suse.de +- config.conf: Suppress RT until forward-port is complete +* Thu Jun 12 2008 jeffm@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: Delete. +* Thu Jun 12 2008 olh@suse.de +- update ps3 config, disable unused drivers +- disable patches.arch/ppc-efika-slowdown.patch +* Thu Jun 12 2008 jeffm@suse.de +- Updated to 2.6.26-rc5-git5. + - Eliminated 91 patches. + - Disabled OCFS2 userspace heartbeat. + - Disabled Xen. +* Thu Jun 12 2008 sdietrich@suse.de + Build fix: drop patches merged into 2.6.25.5 +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: Delete. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + Delete. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: Delete. + Update to 2.6.25-RT6: +- Update config files: enable (M) CONFIG_RWLOCK_TORTURE_TEST + Resolve conflicts: +- patches.rt/preempt-realtime-x86_64.patch: Linux-RT 2.6.25.4-RT. + Add: +- patches.rt/trace-eip2ip.patch: Re: 2.6.25.4-rt4 Compile Fix. +- patches.rt/rwlock-prio-fix.patch: rwlock: reset prio on unlocks + and wakeups. +- patches.rt/rwlock-fixes.patch: rwlock: fix pi_list race + conditions. +- patches.rt/event-trace-hrtimer-trace.patch: event-tracer: + add clockevent trace. +- patches.rt/rwlock-torture.patch: rwlock: rwlock torture test. +- patches.rt/ftrace-wakeup-rawspinlock.patch: ftrace: user raw + spin lock for wakeup function trace. +- patches.rt/radix-tree-lockdep-plus1.patch: lockdep: add +1 to + radix tree array. +- patches.rt/sched-cpupri-hotplug-support.patch: sched: fix + cpupri hotplug support. +- patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri + priocount. +- patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. +* Wed Jun 11 2008 agruen@suse.de +- rpm/make-symsets: update to the latest version which will ignore + symset changes if the symset includes a symbol marked to be + ignored. +* Wed Jun 11 2008 agruen@suse.de +- rpm/kernel-binary.spec.in: only generate symsets for kernels + with CONFIG_MODULES=y. +- rpm/macros.kernel-source: remove the ps3 specific check: we + really want to check whether the kernel mas modules enabled, + which is covered by the symsets check already now. +* Wed Jun 11 2008 gregkh@suse.de +- patches.drivers/usb-don-t-use-reset-resume-if-drivers-don-t-support-it.patch: + USB: don't use reset-resume if drivers don't support it. +* Wed Jun 11 2008 gregkh@suse.de +- comment out + patches.suse/convert-novfs-to-open-soure-coding-standards.patch in the + series file as it is reported to fail some regression tests. +* Wed Jun 11 2008 gregkh@suse.de +- patches.suse/convert-novfs-to-open-soure-coding-standards.patch: + Convert novfs to open soure coding standards. +* Mon Jun 09 2008 gregkh@suse.de +- patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore +* Mon Jun 09 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Mon Jun 09 2008 gregkh@suse.de +- Update to 2.6.25.6 + - loads of bugfixes + - remove the following patches that were already included in this release: + - patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch + - patches.drivers/libata-force-hardreset-if-link-pm + - patches.fixes/input-hid-apple-numlock-emulation.patch + - patches.arch/check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch +* Mon Jun 09 2008 gregkh@suse.de +- patches.drivers/usb-sierra-option.patch: USB: update sierra + and option device ids (bnc#374637). +* Mon Jun 09 2008 teheo@suse.de +- patches.drivers/libata-ahci-mcp65-workarounds: ahci: workarounds + for mcp65 (bnc#398573). +* Mon Jun 09 2008 jkosina@suse.de +- patches.fixes/input-i8042-add-ctr-resume-timeout.patch: Input: + add retry logic to resume with respect to CTR (bnc#351119). +* Sat Jun 07 2008 gregkh@suse.de +- Update to 2.6.25.5. + - fixes CVE-2008-1673 +* Fri Jun 06 2008 tiwai@suse.de +- add missing patches.rt/ftrace-add-nr_syscalls.patch for fixing + i386-rt_debug +* Thu Jun 05 2008 jbeulich@novell.com +- 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: netfront (bnc#394575) and page table + handling (bnc#396858) fixes. +- patches.xen/540-blkif-nr-segments-check.patch: Avoid theoretical + TOCTTOU bug in block backend nr_segments checking. +- patches.xen/560-x86_64-no-irq-affinity-break-msg.patch: x86_64: + Remove warning message about 'Breaking affinity for irq'. +- patches.xen/xen-netfront-flip-prod: fix updating of req_prod_pvt + in the receive ring for the flipping case. +* Wed Jun 04 2008 jblunck@suse.de +- patches.drivers/libata-acpi-fix-hotplug: Don't call ata_port_freeze() + in ata_acpi_detach_device(). +* Wed Jun 04 2008 schwab@suse.de +- Don't clean asm-offsets.h. +* Wed Jun 04 2008 jjohanse@suse.de +- patches.apparmor/apparmor-module_interface.diff: AppArmor: + Update patch to properly set profile name_table size (bnc#396993) +* Wed Jun 04 2008 jkosina@suse.de +- patches.fixes/input-add-amilo-pro-v-to-nomux.patch: Add + Fujitsu-Siemens Amilo Pro 2010 and 2030 to nomux list + (bnc#345699 bnc#389169) +* Tue Jun 03 2008 tiwai@suse.de +- patches.drivers/alsa-hda-realtek-auto-resume-fix: hda - Fix + resume of auto-config mode with Realtek codecs (bnc#385473). +* Tue Jun 03 2008 bphilips@suse.de + Backport: e1000e for montevina systems +- patches.drivers/e1000e-backport-0001-remove-no-longer-used-e1000e_read_nvm_spi.patch: + e1000e: remove no longer used e1000e_read_nvm_spi. +- patches.drivers/e1000e-backport-0002-remove-irq_sem.patch: + e1000e: remove irq_sem. +- patches.drivers/e1000e-backport-0003-rename-mc_addr_list_update.patch: + e1000e: rename mc_addr_list_update. +- patches.drivers/e1000e-backport-0004-reorganize-PHY-and-flow-control-interface.patch: + e1000e: reorganize PHY and flow control interface. +- patches.drivers/e1000e-backport-0005-Make-arrays-out-of-these-Rx-Tx-registers.patch: + e1000e: Make arrays out of these Rx/Tx registers. +- patches.drivers/e1000e-backport-0006-rename-a-few-functions.patch: + e1000e: rename a few functions. +- patches.drivers/e1000e-backport-0007-cleanup-several-stats-issues.patch: + e1000e: cleanup several stats issues. +- patches.drivers/e1000e-backport-0008-Fix-HW-Error-on-es2lan-ARP-capture-issue-by.patch: + e1000e: Fix HW Error on es2lan, ARP capture issue by BMC. +- patches.drivers/e1000e-backport-0009-Add-support-for-BM-PHYs-on-ICH9.patch: + e1000e: Add support for BM PHYs on ICH9. +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: Delete. +- patches.drivers/alsa-hda-backport-2.6.26-rc4: Backport ALSA + HDA-Intel patches from 2.6.26-rc4 (bnc#390473). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-asus-a9t-fix: ac97 - Fix ASUS A9T laptop + output (bnc#363987). +* Mon Jun 02 2008 jeffm@suse.de +- patches.fixes/reiserfs-prealloc-fix: reiserfs: Use list_del_init + in use_preallocated_list_if_available (bnc#378095). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-hp2133-mic-fix: hda - Fix mic input on + HP2133 (bnc#388540). +* Mon Jun 02 2008 tiwai@suse.de +- patches.drivers/alsa-emu10k1-audigy2-digital-fix: emu10k1 - Fix + inverted Analog/Digital mixer switch on Audigy2 (bnc#396204). +* Sat May 31 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt4 (refreshed patches suppressed) +- Update config files. + Added: +- patches.rt/adapt-remove-extra-try-to-lock.patch +- patches.rt/adaptive-adjust-pi-wakeup.patch +- patches.rt/adaptive-earlybreak-on-steal.patch +- patches.rt/adaptive-optimize-rt-lock-wakeup.patch +- patches.rt/adaptive-task-oncpu.patch +- patches.rt/arm-fix-compile-error-trace-exit-idle.patch +- patches.rt/arm-omap-02.patch +- patches.rt/arm-omap-03.patch +- patches.rt/arm-omap-04.patch +- patches.rt/arm-omap-05.patch +- patches.rt/fix_vdso_gtod_vsyscall64_2.patch +- patches.rt/ftrace-compile-fixes.patch +- patches.rt/ftrace-disable-daemon.patch +- patches.rt/ftrace-dont-trace-markers.patch +- patches.rt/ftrace-fix-header.patch +- patches.rt/ftrace-function-record-nop.patch +- patches.rt/ftrace-print-missing-cmdline.patch +- patches.rt/ftrace-record-comm-on-ctrl.patch +- patches.rt/ftrace-safe-traversal-hlist.patch +- patches.rt/ftrace-trace-sched.patch +- patches.rt/ftrace-update-cnt-stat-fix.patch +- patches.rt/git-ignore-module-markers.patch +- patches.rt/git-ignore-script-lpp.patch +- patches.rt/lockdep-avoid-fork-waring.patch +- patches.rt/lockstat-fix-contention-points.patch +- patches.rt/lockstat-output.patch +- patches.rt/nmi-show-regs-fix.patch +- patches.rt/preempt-realtime-ftrace-disable-ftraced.patch +- patches.rt/realtime-preempt-warn-about-tracing.patch +- patches.rt/rtmutex-rwlock-cmpxchg-typecast.patch +- patches.rt/rwlock-implement-downgrade-write.patch +- patches.rt/rwlocks-fix-no-preempt-rt.patch +- patches.rt/sched-fix-rt-task-wakeup.patch +- patches.rt/sched-fix-sched-fair-wakeup.patch +- patches.rt/sched-nr-migrate-lower-default-preempt-rt.patch +- patches.rt/sched-prioritize-non-migrating-rt-tasks.patch +- patches.rt/sched-wake_up_idle_cpu-rt.patch +- patches.rt/trace_hist-divzero.patch +- patches.rt/trace_hist-latediv.patch +- patches.rt/x86-delay-enable-preempt-tglx.patch + Removed: +- patches.rt/rtmutex-optimize-wakeup.patch +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch +- patches.rt/rtmutex-remove-extra-try.patch +- patches.rt/ftrace-remove-print-of-max.patch +* Thu May 29 2008 sdietrich@suse.de + RT: Update IBM EDAC and PRTM +- Update config files. +- patches.rt/drivers-edac-add-support-for-HS21XM-SMI-remediation: + Add support for HS21XM SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-add-support-for-HS21_LS21-SMI-remediation: + Add support for HS21/LS21 SMI Remediation to the 2.6.22-based + SLERT kernel. +- patches.rt/drivers-edac-i5000-turn-off-unsupported-check: + Turn off unsupported EDAC check on the i5000 controller. +- patches.rt/drivers-edac-prevent-potential-printk-storm: + Prevent potential EDAC printk storm. +- patches.rt/drivers-edac-test_device.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-k8-rev-f.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-add-sysfs_notify-calls.patch: + edac-2.6.23-to-2.6.22.patch back-port. +- patches.rt/drivers-edac-new-amd64.patch: + drivers-edac-new-amd64.patch (revision 108). + Obsolete: +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: Delete. +- patches.rt/add-support-for-HS21XM-SMI-remediation: Delete. +- patches.rt/prevent-potential-EDAC-printk-storm: Delete. +* Thu May 29 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-macbook-fix: ata_piix: fix + macbook ich8m problems (bnc#395407). +* Thu May 29 2008 agruen@suse.de +- Obsolete some KMPs which have been integrated into mainline + meanwhile (bnc#357799). +* Thu May 29 2008 jbeulich@novell.com +- supported.conf: Mark 8250_pnp as supported. +* Wed May 28 2008 teheo@suse.de +- patches.drivers/libata-acpi-fix-hotplug: libata: Handle bay + devices in dock stations (bnc#390822 bnc#395082). +* Wed May 28 2008 jkosina@suse.de +- patches.fixes/input-add-i8042-nopnp-for-D845PESV.patch: Input: + Add i8042.nopnp for Intel D845PESV (bnc#386952). +* Mon May 26 2008 sdietrich@suse.de + RT: Update to 2.6.25.4-rt3 - add RWSEM / RWLOCK patches: +- patches.rt/rt-mutex-core.patch: Linux-RT 2.6.25.4-RT3. +- patches.rt/multi-reader-account.patch: map tasks to reader + locks held. +- patches.rt/multi-reader-limit.patch: implement reader limit + on read write locks. +- patches.rt/multi-reader-lock-account.patch: map read/write + locks back to their readers. +- patches.rt/multi-reader-pi.patch: read lock Priority Inheritance + implementation. +- patches.rt/native-sched-clock-booboo.patch: Re: 2.6.25.4-rt2 + (native_sched_clock() booboo). +- patches.rt/rwlocks-default-nr-readers-nr-cpus.patch: +- patches.rt/rwlocks-multiple-readers.patch: implement rwlocks + management. +- patches.rt/rwsems-multiple-readers.patch: add framework for + multi readers on rwsems. +* Mon May 26 2008 olh@suse.de +- add patches.arch/ppc-efika-slowdown.patch + slow down hot code paths to avoid hangs during install (bnc#374309) +* Sun May 25 2008 tiwai@suse.de +- Update config files: forgot to update vanilla kernel configs +* Sat May 24 2008 tiwai@suse.de +- Update config files: disable group scheduler for normal kernels + for openSUSE 11.0, too (this should be enabled again later for + 11.1 once after the bugs get fixed...) +* Fri May 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-dma-pos-fix: hda - Fix DMA position + inaccuracy (bnc#362775, bnc#364421). +- patches.drivers/alsa-hda-vt1708-pcm-noise-fix: hda - Fix noise + on VT1708 codec (bnc#390473). +* Fri May 23 2008 sdietrich@suse.de + RT: Update config files: Disable Group Scheduler +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-simg3726-nosrst: libata: SRST can't + be trusted on PMP sil3726 (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: update config files: Disable SYSFS_DEPRECATED +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). series.conf not + updated. Fix it. +* Thu May 22 2008 teheo@suse.de +- patches.drivers/libata-pmp-detection-fixes: libata: fix a + number of PMP detection problems (bnc#393456). +* Thu May 22 2008 sdietrich@suse.de + RT: build fix +- suppress adaptive locking patches that are not upstream. +- Update config files. +* Wed May 21 2008 jblunck@suse.de +- patches.fixes/acpi-bay-cleanup-and-exit.patch: bay: Exit if + notify handler cannot be installed (bnc#390822). +* Wed May 21 2008 jbeulich@novell.com +- patches.xen/xen3-patch-2.6.25: Fix DomU boot issue. +* Wed May 21 2008 oneukum@suse.de +- patches.drivers/ehci_fix_remote_wakeup_regression.diff: EHCI: + fix remote-wakeup regression. (bnc#373128) +* Tue May 20 2008 jblunck@suse.de +- doc/novell-kmp/novell-example-1.1.tar.bz2, + doc/novell-kmp/novell-example.spec: Fix example spec and Kbuild + because EXTRA_CFLAGS isn't taken from the environment anymore. +* Tue May 20 2008 sdietrich@suse.de +- Update config files: SLERT compatibility: SYSFS_DEPRECATED +* Tue May 20 2008 sdietrich@suse.de + RT: Update to 2.5.25.4-rt2 (refreshed patches suppressed) + Add: +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/x86-fix-32bit-sched-clock-crap.patch: x86: disable TSC + for sched_clock() when calibration failed +- patches.rt/x86-fix-tsc-cyc2ns-crap.patch: x86: fix setup of cyc2ns + in tsc_64.c. +- patches.rt/x86-prepare-to-fix-32bit-sched-clock-crap.patch: + x86: distangle user disabled TSC from unstable +- patches.rt/adaptive-spinlock-lite-v2.patch: adaptive spinlocks + lite. +- patches.rt/rtmutex-remove-xchg.patch: rtmutex - remove double + xchg. + Update: +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. + Resolve Conflicts: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- Update config files. +* Mon May 19 2008 sdietrich@suse.de + RT: Adaptive locking patches: +- patches.rt/rtmutex-lateral-steal.patch: allow rt-mutex + lock-stealing to include lateral priority. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +- patches.rt/rtmutex-rearrange.patch: rearrange + rt_spin_lock_slowlock sleeping code. +- patches.rt/rtmutex-adaptive-locks.patch: adaptive real-time + lock support. +- patches.rt/rtmutex-adaptive-timeout.patch: add a timeout + mechanism to adaptive-locking. +- patches.rt/rtmutex-optimize-wakeup.patch: optimize rt lock + wakeup. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: + adjust pi_lock usage in wakeup. +- patches.rt/rtmutex-remove-extra-try.patch: remove the extra + call to try_to_take_lock. +- Update config files: + CONFIG_RTLOCK_LATERAL_STEAL=y + CONFIG_ADAPTIVE_RTLOCK=y + CONFIG_IBM_RTL (disable temporarily to address build error) +* Mon May 19 2008 tiwai@suse.de +- Update config files (missing for rt*). +* Mon May 19 2008 tiwai@suse.de +- patches.drivers/alsa-hda-backport-2.6.25-rc3: Backport ALSA + HDA-Intel patches from 2.6.25-rc3 (bnc#390473, bnc#386422, + bnc#385473). +- patches.drivers/alsa-intel8x0-8ch: intel8x0 - Add support of + 8 channel sound. +- patches.drivers/alsa-mixer-oss-map-fix: Add more fallbacks to + OSS PHONEOUT mixer map. +- patches.drivers/alsa-usb-audio-disconnect-oops-fix: Fix Oops + with usb-audio reconnection. +- patches.drivers/alsa-hda-intel-new-ati-id: Delete. +- patches.drivers/alsa-hda-intel-new-nvidia-id: Delete. +- patches.drivers/alsa-hda-intel-use-PCI_DEVICE: Delete. +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Delete. +- Update config files. +* Mon May 19 2008 jbeulich@novell.com +- Update Xen patches to c/s 524 and 2.6.25.4. +- patches.xen/xen-balloon-hvm-min: don't allow ballooning down + a HVM domain below a reasonable limit (172482). +- patches.xen/xen-swiotlb-heuristics: adjust Xen's swiotlb + default size setting. +* Mon May 19 2008 jbeulich@novell.com +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Add missing list terminator for acpi_rsdt_dmi_table[] and move to + __initdata. +* Mon May 19 2008 sdietrich@suse.de + RT: SMI latency fixes from IBM. +- patches.rt/add-support-for-HS21_LS21-SMI-remediation: [PATCH + 1/3] Add support for HS21/LS21 SMI Remediation. +- patches.rt/add-support-for-HS21XM-SMI-remediation: [PATCH 2/3] + Add support for HS21XM SMI Remediation . +- patches.rt/prevent-potential-EDAC-printk-storm: [PATCH 3/3] + Prevent potential EDAC printk storm. +- RT: Update config files. +* Mon May 19 2008 agruen@suse.de +- patches.suse/nfs4acl-ext3.diff: Fix compilation error when + CONFIG_EXT3_FS_NFS4ACL is off. +* Mon May 19 2008 sdietrich@suse.de +- RT: Update config files. +* Mon May 19 2008 trenn@suse.de +- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: ACPI: + initramfs DSDT override support. + -> Did not make it into 2.6.25 again... +- Update config files. +* Sun May 18 2008 agruen@suse.de +- Update the nfs4acl patches (and split them out more explicitly). + Export all new symbols als GPL only. +- patches.apparmor/parent-permission.diff: Rediff. +* Sun May 18 2008 sdietrich@suse.de +- RT: Update config files. +* Sun May 18 2008 sdietrich@suse.de + RT: update to 2.6.25.4-rt1 patch queue. +* Sun May 18 2008 sdietrich@suse.de + RT cleanup: Remove unused/obsolete RT patches. +* Sun May 18 2008 sdietrich@suse.de +- Update config files: update RT debug configs. +- config.conf: enable DEBUG flavors. +* Sat May 17 2008 sdietrich@suse.de + Linux-RT 2.6.25-RT: +- Updated RT patch queue (not individually enumerated here) +- Update config files: RT +- config.conf: RT +* Fri May 16 2008 gregkh@suse.de +- Update config files. +- patches.drivers/usb-add-option-hso-driver.patch: USB: add + option hso driver. +* Fri May 16 2008 gregkh@suse.de +- refresh patches due to fuzz +* Fri May 16 2008 gregkh@suse.de +- patches.fixes/bluetooth-wake-up-properly-after-ide-timeout-expires.patch: + bluetooth: wake up properly after ide timeout expires + (bnc#390839). +* Fri May 16 2008 olh@suse.de +- update patches.fixes/tg3-flowctrl.patch + do not compare flow control settings in parallel detect mode +* Fri May 16 2008 trenn@suse.de +- patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch: + Introduce acpi_root_table=rsdt boot param and dmi list to + force rsdt (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_introduce_acpica_rsdt_global_variable.patch: + ACPICA: Add acpi_gbl_force_rsdt variable + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/acpi_thinkpad_remove_R40e_c-state_blacklist.patch: + Remove R40e c-state blacklist + (http://bugzilla.kernel.org/show_bug.cgi?id=8246). +- patches.arch/cpufreq_fix_acpi_driver_on_BIOS_changes.patch: + CPUFREQ: Check against freq changes from the BIOS. +* Fri May 16 2008 jblunck@suse.de +- patches.fixes/vfs-2.6.git-9bc300eae0400efdfae3fec3352896e10468a78f.patch: + return to old errno choice for fix mkdir -p with ro-bind mounts +* Fri May 16 2008 jblunck@suse.de +- rpm/kernel-{binary,source}.spec.in: use localversion and set + KBUILD_BUILD_VERSION (used for Kernel:Vanilla) +* Thu May 15 2008 gregkh@suse.de +- Update to final version of 2.6.25.4 +* Thu May 15 2008 jblunck@suse.de +- rpm/macros.kernel-source: Let KMPs fail when flavors_to_build is empty +- rpm/kernel-{dummy,source,syms,binary}.spec.in, scripts/tar-up.sh: + fix release number changes introduced by bnc#271712 for OBS (bnc#378933) +* Thu May 15 2008 olh@suse.de +- add patches.fixes/tg3-flowctrl.patch + revert 'Fix supporting flowctrl code' to fix JS21 (bnc#390314) +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 oneukum@suse.de +- patches.drivers/appletouch_persist.diff: reset_resume and + autosuspend for appletouch touchpads (bnc#388399). +* Wed May 14 2008 teheo@suse.de +- patches.drivers/libata-force-hardreset-if-link-pm: libata: + force hardreset if link is in powersave mode (bnc#381795). +- patches.drivers/libata-ahci-sb600-no-msi: ahci: SB600 ahci + can't do MSI, blacklist that capability (bnc#384559). +* Tue May 13 2008 gregkh@suse.de +- Update config files for vanilla targets +* Tue May 13 2008 gregkh@suse.de +- Update to 2.6.25.4-rc1 + - lots of bug fixes +* Tue May 13 2008 sdietrich@suse.de + Cleanup RT: +- patches.rt/*: Delete. +* Mon May 12 2008 jkosina@suse.de +- patches.fixes/input-hid-apple-numlock-emulation.patch: + HID: split Numlock emulation quirk from + HID_QUIRK_APPLE_HAS_FN. (bnc#381764). +* Sat May 10 2008 gregkh@suse.de +- Update to 2.6.25.3 + - fixes 2 security issues (one networking, one sparc, no CVE + numbers issued just yet) +* Fri May 09 2008 jeffm@suse.de +- patches.apparmor/fsetattr-restore-ia_file: vfs: restore ia_file + for compatibility with external modules. (bnc#381259) +* Fri May 09 2008 hare@suse.de +- patches.drivers/open-iscsi-git-update: Delete. +- patches.fixes/open-iscsi-nop-fixes: NOP timeout fixes. +* Thu May 08 2008 gregkh@suse.de +- patches.kernel.org/v4l-dvb-patch-for-various-dibcom-based-devices.patch: + V4L/DVB (7473): PATCH for various Dibcom based devices + (bnc#381632). +* Thu May 08 2008 gregkh@suse.de +- comment out vmware patch as it should no longer be needed +* Thu May 08 2008 gregkh@suse.de +- rediff patches to apply cleanly. +* Thu May 08 2008 gregkh@suse.de +- Update to 2.6.25.3-rc1 + - potential fix for increased power consumption and other bugs +* Thu May 08 2008 sassmann@suse.de +- Update config file ppc64. +- patches.arch/ppc-ps3-ps3vram-mtd.patch: ps3vram driver that + allows you to access the extra ~240MB of DDR video. +* Wed May 07 2008 gregkh@suse.de +- patches.kernel.org/patch-2.6.25.1-2: Linux 2.6.25.2. + - fixes CVE-2008-1669 +* Tue May 06 2008 schwab@suse.de +- suse-ppc32-mol-semaphore: fix mol for 2.6.26-rc1. +* Mon May 05 2008 jack@suse.cz + Bring UDF to state in 2.6.26-rc1 to support UDF 2.50. +- patches.suse/udf-10-simple-cleanup-of-truncate.c.patch: udf: + simple cleanup of truncate.c (fate#303336). +- patches.suse/udf-11-truncate-create-function-for-updating-of-Alloc.patch: + udf: truncate: create function for updating of Allocation Ext + Descriptor (fate#303336). +- patches.suse/udf-12-replace-all-adds-to-little-endians-variables-wi.patch: + udf: replace all adds to little endians variables with + le*_add_cpu (fate#303336). +- patches.suse/udf-13-simplify-__udf_read_inode.patch: udf: + simplify __udf_read_inode (fate#303336). +- patches.suse/udf-14-replace-udf_-_offset-macros-with-functions.patch: + udf: replace udf_*_offset macros with functions (fate#303336). +- patches.suse/udf-15-convert-udf_count_free_bitmap-to-use-bitmap_wei.patch: + udf: convert udf_count_free_bitmap to use bitmap_weight + (fate#303336). +- patches.suse/udf-16-udf_get_block-inode_bmap-remove-unneeded-che.patch: + udf: udf_get_block, inode_bmap - remove unneeded checks + (fate#303336). +- patches.suse/udf-17-create-function-for-conversion-from-timestamp-t.patch: + udf: create function for conversion from timestamp to timespec + (fate#303336). +- patches.suse/udf-18-convert-udf_stamp_to_time-to-return-struct-time.patch: + udf: convert udf_stamp_to_time to return struct timespec + (fate#303336). +- patches.suse/udf-19-convert-udf_stamp_to_time-and-udf_time_to_stamp.patch: + udf: convert udf_stamp_to_time and udf_time_to_stamp to use + timestamps (fate#303336). +- patches.suse/udf-1-kill-udf_set_blocksize.patch: udf: kill + udf_set_blocksize (fate#303336). +- patches.suse/udf-20-remove-unneeded-kernel_timestamp-type.patch: + udf: remove unneeded kernel_timestamp type (fate#303336). +- patches.suse/udf-21-super.c-reorganization.patch: udf: super.c + reorganization (fate#303336). +- patches.suse/udf-22-Mark-udf_process_sequence-as-noinline.patch: + udf: Mark udf_process_sequence() as noinline (fate#303336). +- patches.suse/udf-23-Remove-checking-of-existence-of-filename-in-udf.patch: + udf: Remove checking of existence of filename in udf_add_entry() + (fate#303336). +- patches.suse/udf-24-Remove-declarations-of-arrays-of-size-UDF_NAME_.patch: + udf: Remove declarations of arrays of size UDF_NAME_LEN (256 + bytes) (fate#303336). +- patches.suse/udf-25-fix-anchor-point-detection.patch: udf: + fix anchor point detection (fate#303336). +- patches.suse/udf-26-Cleanup-volume-descriptor-sequence-processing.patch: + udf: Cleanup volume descriptor sequence processing + (fate#303336). +- patches.suse/udf-27-Improve-error-recovery-on-mount.patch: + udf: Improve error recovery on mount (fate#303336). +- patches.suse/udf-28-Move-filling-of-partition-descriptor-info-into.patch: + udf: Move filling of partition descriptor info into a separate + function (fate#303336). +- patches.suse/udf-29-Move-processing-of-virtual-partitions.patch: + udf: Move processing of virtual partitions (fate#303336). +- patches.suse/udf-2-kill-useless-file-header-comments-for-vfs-metho.patch: + udf: kill useless file header comments for vfs method + implementations (fate#303336). +- patches.suse/udf-30-Cleanup-anchor-block-detection.patch: udf: + Cleanup anchor block detection. (fate#303336). +- patches.suse/udf-31-Improve-anchor-block-detection.patch: udf: + Improve anchor block detection (fate#303336). +- patches.suse/udf-32-Silence-warning-about-accesses-beyond-end-of-de.patch: + udf: Silence warning about accesses beyond end of device + (fate#303336). +- patches.suse/udf-33-Fix-detection-of-VAT-version.patch: udf: + Fix detection of VAT version (fate#303336). +- patches.suse/udf-34-Allow-loading-of-VAT-inode.patch: udf: + Allow loading of VAT inode (fate#303336). +- patches.suse/udf-35-Handle-VAT-packed-inside-inode-properly.patch: + udf: Handle VAT packed inside inode properly (fate#303336). +- patches.suse/udf-36-Mount-filesystem-read-only-if-it-has-pseudoover.patch: + udf: Mount filesystem read-only if it has pseudooverwrite + partition (fate#303336). +- patches.suse/udf-37-Fix-handling-of-multisession-media.patch: + udf: Fix handling of multisession media (fate#303336). +- patches.suse/udf-38-Add-read-only-support-for-2.50-UDF-media.patch: + udf: Add read-only support for 2.50 UDF media (fate#303336). +- patches.suse/udf-39-Fix-bug-in-VAT-mapping-code.patch: udf: + Fix bug in VAT mapping code (fate#303336). +- patches.suse/udf-3-move-headers-out-include-linux.patch: udf: + move headers out include/linux/ (fate#303336). +- patches.suse/udf-40-Fix-compilation-warnings-when-UDF-debug-is-on.patch: + udf: Fix compilation warnings when UDF debug is on + (fate#303336). +- patches.suse/udf-41-use-crc_itu_t-from-lib-instead-of-udf_crc.patch: + udf: use crc_itu_t from lib instead of udf_crc (fate#303336). +- patches.suse/udf-42-fs-udf-partition.c-udf_get_pblock-mustn-t-be.patch: + udf: fs/udf/partition.c:udf_get_pblock() mustn't be inline + (fate#303336). +- patches.suse/udf-4-Use-DIV_ROUND_UP.patch: fs/udf: Use + DIV_ROUND_UP (fate#303336). +- patches.suse/udf-5--udf_error-static.patch: make udf_error() + static (fate#303336). +- patches.suse/udf-6-udf_CS0toUTF8-cleanup.patch: udf: + udf_CS0toUTF8 cleanup (fate#303336). +- patches.suse/udf-7-fix-udf_build_ustr.patch: udf: fix + udf_build_ustr (fate#303336). +- patches.suse/udf-8-udf_CS0toNLS-cleanup.patch: udf: udf_CS0toNLS + cleanup (fate#303336). +- patches.suse/udf-9-constify-crc.patch: udf: constify crc + (fate#303336). +* Fri May 02 2008 teheo@suse.de +- patches.drivers/libata-sata_inic162x-update-to-0.4: + sata_inic162x: update to 0.4 (bnc#385599). +* Fri May 02 2008 gregkh@suse.de +- update to 2.6.25.1: + - fixes CVE-2008-1375 and CVE-2008-1675 + - lots of other minor bugfixes +* Thu May 01 2008 agruen@suse.de +- Provide "kernel(flavor:symset) = version" instead of + "kernel(symset) = version". This disambiguates the case where + several kernel flavors end up with the same modver checksums + (bnc#190163, bnc#355628). +* Thu May 01 2008 teheo@suse.de +- patches.drivers/libata-ata_piix-verify-sidpr: ata_piix: verify + SIDPR access before enabling it (bnc#385535). +* Wed Apr 30 2008 gregkh@suse.de +- novfs: fixes needed due to apparmor vfs core changes + (extended attributes probably do not work now...) +* Wed Apr 30 2008 gregkh@suse.de +- patches.suse/novfs-add-the-novell-filesystem-client-kernel-module.patch: + novfs: Add the Novell filesystem client kernel module. +- Update config files. +* Wed Apr 30 2008 jeffm@suse.de +- patches.suse/reiserfs-simplify-xattr-internal-file-lookups-opens.diff: + removed fs.h changes, they weren't used. +* Mon Apr 28 2008 gregkh@suse.de +- Update config files. + hopefully the build system is happy now +* Mon Apr 28 2008 gregkh@suse.de +- rpm/config-subst: add #!/bin/sh at start of script to keep future + build issues (like bnc#382214) from causing problems. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete patches: ARM-ep93xx-timer, latency-tracing, + RCU, KVM, mcount, PPC-gtod +- patches.rt/ep93xx-timer-accuracy.patch: Delete. +- patches.rt/ep93xx-clockevents.patch: Delete. +- patches.rt/ep93xx-clockevents-fix.patch: Delete. +- patches.rt/kvm-fix-preemption-bug.patch: Delete. +- patches.rt/kvm-lapic-migrate-latency-fix.patch: Delete. +- patches.rt/kvm-make-less-noise.patch: Delete. +- patches.rt/kvm-preempt-rt-resched-delayed.patch: Delete. +- patches.rt/sched-use-a-2d-bitmap-search-prio-cpu.patch: Delete. +- patches.rt/remove-unused-var-warning.patch: Delete. +- patches.rt/latency-tracing.patch: Delete. +- patches.rt/latency-tracing-remove-trace-array.patch: Delete. +- patches.rt/latency-tracer-disable-across-trace-cmdline.patch: + Delete. +- patches.rt/latency-tracing-i386-paravirt-fastcall.patch: Delete. +- patches.rt/latency-tracing-i386.patch: Delete. +- patches.rt/latency-tracing-x86_64.patch: Delete. +- patches.rt/latency-tracing-ppc.patch: Delete. +- patches.rt/latency-tracer-printk-fix.patch: Delete. +- patches.rt/latency-tracing-exclude-printk.patch: Delete. +- patches.rt/latency-tracing-prctl-api-hack.patch: Delete. +- patches.rt/latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/latency-tracer-one-off-fix.patch: Delete. +- patches.rt/smaller-trace.patch: Delete. +- patches.rt/trace-name-plus.patch: Delete. +- patches.rt/trace-with-caller-addr.patch: Delete. +- patches.rt/trace-sti-mwait.patch: Delete. +- patches.rt/latency-tracer-optimize-a-bit.patch: Delete. +- patches.rt/idle-stop-critical-timing.patch: Delete. +- patches.rt/latency-tracer-variable-threshold.patch: Delete. +- patches.rt/reset-latency-histogram.patch: Delete. +- patches.rt/undo-latency-tracing-raw-spinlock-hack.patch: Delete. +- patches.rt/random-driver-latency-fix.patch: Delete. +- patches.rt/latency-tracing-use-now.patch: Delete. +- patches.rt/preempt_max_latency-in-all-modes.patch: Delete. +- patches.rt/latency-hist-add-resetting-for-all-timing-options.patch: + Delete. +- patches.rt/latency-trace-sysctl-config-fix.patch: Delete. +- patches.rt/latency-trace-convert-back-to-ms.patch: Delete. +- patches.rt/latency-trace-fix.patch: Delete. +- patches.rt/trace-cpuidle.patch: Delete. +- patches.rt/lockdep-show-held-locks.patch: Delete. +- patches.rt/lockdep-lock_set_subclass.patch: Delete. +- patches.rt/lockdep-prettify.patch: Delete. +- patches.rt/lockdep-more-entries.patch: Delete. +- patches.rt/latency-tracer-arch-low-address.patch: Delete. +- patches.rt/latency-tracer-dont-panic-on-failed-bootmem-alloc.patch: + Delete. +- patches.rt/mcount-add-x86_64-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-x86-vdso-notrace-annotations.patch: + Delete. +- patches.rt/mcount-nmi-notrace-annotations.patch: Delete. +- patches.rt/mcount-add-time-notrace-annotations.patch: Delete. +- patches.rt/mcount-lockdep-notrace-annotations.patch: Delete. +- patches.rt/mcount-preemptcount-notrace-annotations.patch: + Delete. +- patches.rt/mcount-fault-notrace-annotations.patch: Delete. +- patches.rt/mcount-irqs-notrace-annotations.patch: Delete. +- patches.rt/mcount-rcu-notrace-annotations.patch: Delete. +- patches.rt/latency-measurement-drivers-fix.patch: Delete. +- patches.rt/latency-measurement-drivers.patch: Delete. +- patches.rt/redo-regparm-option.patch: Delete. +- patches.rt/nmi-profiling-base.patch: Delete. +- patches.rt/ppc-gtod-notrace-fix.patch: Delete. +- patches.rt/ppc-gtod-support.patch: Delete. +- patches.rt/ppc-gtod-support-fix.patch: Delete. +- patches.rt/ppc-a-2.patch: Delete. +- patches.rt/ppc-fix-clocksource-timebase-shift.patch: Delete. +- patches.rt/ppc-remove-broken-vsyscall.patch: Delete. +- patches.rt/ppc-read-persistent-clock.patch: Delete. +- patches.rt/ppc-clockevents.patch: Delete. +- patches.rt/ppc-clockevents-fix.patch: Delete. +- patches.rt/ppc-highres-dyntick.patch: Delete. +- patches.rt/inet-hash-bits-ipv6-fix.patch: Delete. +- patches.rt/inet_hash_bits.patch: Delete. +- patches.rt/rcu-1.patch: Delete. +- patches.rt/rcu-2.patch: Delete. +- patches.rt/rcu-3.patch: Delete. +- patches.rt/rcu-4.patch: Delete. +- patches.rt/rcu-preempt-fix-nmi-watchdog.patch: Delete. +- patches.rt/rcu-preempt-fix-rcu-torture.patch: Delete. +- patches.rt/dynticks-rcu-rt-fixlet.patch: Delete. +- patches.rt/rcu-tasklet-softirq.patch: Delete. +- patches.rt/rcu-classic-fixup.patch: Delete. +- patches.rt/rcu-warn-underflow.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove obsolete Adaptive-locking patches +- patches.rt/rtmutex-adaptive-locks.patch: Delete. +- patches.rt/rtmutex-adaptive-mutexes.patch: Delete. +- patches.rt/rtmutex-adaptive-timeout.patch: Delete. +- patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. +- patches.rt/rtmutex-lateral-steal.patch: Delete. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +- patches.rt/rtmutex-optimize-wakeup.patch: Delete. +- patches.rt/rtmutex-rearrange.patch: Delete. +- patches.rt/rtmutex-remove-extra-try.patch: Delete. +- patches.rt/x86-ticket-lock.patch: Delete. +* Mon Apr 28 2008 sdietrich@suse.de + Cleanup: + Remove ARM and MIPS RT patches +- patches.rt/arm-cmpxchg-support-armv6.patch: Delete. +- patches.rt/arm-cmpxchg.patch: Delete. +- patches.rt/arm-compile-fix.patch: Delete. +- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-futex-atomic-cmpxchg.patch: Delete. +- patches.rt/arm-latency-tracer-support.patch: Delete. +- patches.rt/arm-leds-timer.patch: Delete. +- patches.rt/arm-preempt-config.patch: Delete. +- patches.rt/arm-trace-preempt-idle.patch: Delete. +- patches.rt/latency-tracing-arm.patch: Delete. +- patches.rt/preempt-irqs-arm-fix-oprofile.patch: Delete. +- patches.rt/preempt-irqs-arm.patch: Delete. +- patches.rt/preempt-realtime-arm-bagde4.patch: Delete. +- patches.rt/preempt-realtime-arm-footbridge.patch: Delete. +- patches.rt/preempt-realtime-arm-integrator.patch: Delete. +- patches.rt/preempt-realtime-arm-ixp4xx.patch: Delete. +- patches.rt/preempt-realtime-arm-pxa.patch: Delete. +- patches.rt/preempt-realtime-arm-rawlock-in-mmu_context-h.patch: + Delete. +- patches.rt/preempt-realtime-arm-shark.patch: Delete. +- patches.rt/preempt-realtime-arm.patch: Delete. +- patches.rt/preempt-irqs-mips.patch: Delete. +- patches.rt/preempt-realtime-mips.patch: Delete. +- patches.rt/rt-mutex-arm-fix.patch: Delete. +- patches.rt/rt-mutex-arm.patch: Delete. +- patches.rt/rt-mutex-mips.patch: Delete. +- patches.rt/mips-change-raw-spinlock-type.patch: Delete. +- patches.rt/mips-remove-conlicting-rtc-lock-declaration.patch: + Delete. +- patches.rt/mips-remove-duplicate-kconfig.patch: Delete. +- patches.rt/mips-remove-finish-arch-switch.patch: Delete. +* Fri Apr 25 2008 carnold@novell.com +- rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide + kernel-xenpae (bnc#382309) +* Fri Apr 25 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + create /builtin/sound/cell-index, content == 1 +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add newline to devspec files +* Thu Apr 24 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + add devspec file for mac-io, it was created as a side effect + in of/platform.c (bnc#374693) +* Thu Apr 24 2008 olh@suse.de +- use bzip2 instead of lzma as rpm compression method for vanilla +* Thu Apr 24 2008 olh@suse.de +- relax Conflicts for kernel-vanilla + no version check for lvm, udev and apparmor +* Wed Apr 23 2008 olh@suse.de +- readd patches.arch/ppc-pegasos-console-autodetection.patch + force speed 115200, device-tree has no current-speed property +* Wed Apr 23 2008 tiwai@suse.de +- patches.drivers/alsa-hda-intel-new-ati-id, + patches.drivers/alsa-hda-intel-use-PCI_DEVICE, + patches.drivers/alsa-hda-intel-new-nvidia-id: Add missing PCI + ids for new ATI/Nvidia devices (bnc#370775) +- patches.drivers/alsa-dell-xps-m1330-hp-fix: Fix Dell XPS M1330 + outputs +* Tue Apr 22 2008 jack@suse.cz +- patches.fixes/quota_reiserfs_tail_fix.diff: reiserfs: Unpack + tails on quota files (375179). +* Tue Apr 22 2008 olh@suse.de +- update patches.arch/ppc-efika-mpc52xx-ac97.patch + fixes for 2.6.25 +* Sat Apr 19 2008 schwab@suse.de +- Add compat handler for PTRACE_GETSIGINFO. +* Sat Apr 19 2008 aj@suse.de +- Conflict with apparmor-parser < 2.3 (not <=) in kernel-binary + spec files. +* Sat Apr 19 2008 jeffm@suse.de +- Re-synced reiserfs patch set due to broken local repo. +* Sat Apr 19 2008 jeffm@suse.de +- Updated reiserfs patch set + - Eliminated xattr interaction with AppArmor + - Eliminated xattr deadlock under load between journal lock and + xattr dir i_mutex + - Properly annotated xattr i_mutex locking for lockdep + - Code cleanup +* Fri Apr 18 2008 jjohanse@suse.de +- Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) +* Fri Apr 18 2008 jjohanse@suse.de +- patches.apparmor/__d_path-keep-connected.diff: Fix __d_path + to allow for old and new behavior bnc#380763. +* Thu Apr 17 2008 gregkh@suse.de +- refresh patches to apply without fuzz +* Thu Apr 17 2008 gregkh@suse.de +- Update to 2.6.25-final +* Wed Apr 16 2008 jjohanse@suse.de +- Update to AppArmor 2.3 patch series +* Wed Apr 16 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Fixed accidental + passing of -ENODATA to userspace during chown, and messages during + chown and delete. +* Tue Apr 15 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc9 and c/s 517. +* Sat Apr 12 2008 gregkh@suse.de +- refresh patches to clean up fuzz +* Sat Apr 12 2008 gregkh@suse.de +- Update config files. +* Sat Apr 12 2008 gregkh@suse.de +- updat to 2.6.25-rc9 +* Thu Apr 10 2008 gregkh@suse.de +- update to 2.6.25-rc8-git8 +* Tue Apr 08 2008 gregkh@suse.de +- update to 2.6.25-rc8-git7 +* Mon Apr 07 2008 gregkh@suse.de +- patches.kernel.org/pvrusb2-fix-broken-build-due-to-patch-order-dependency.patch: + pvrusb2: fix broken build due to patch order dependency. +* Mon Apr 07 2008 gregkh@suse.de +- update to 2.6.25-rc8-git5 +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Removed struct + file use entirely. +* Sun Apr 06 2008 jeffm@suse.de +- patches.suse/reiserfs-kill-xattr-readdir.diff: Eliminated use + of vfsmount-less dentry_open(). +* Thu Apr 03 2008 teheo@suse.de +- patches.drivers/libata-pata_ali-disable-ATAPI_DMA: pata_ali: + disable ATAPI DMA (332588). +* Wed Apr 02 2008 gregkh@suse.de +- Update to 2.6.25-rc8 +* Tue Apr 01 2008 jblunck@suse.de +- rpm/kernel-source.spec.in,kernel-binary.spec.in: Cleanup Requires +* Mon Mar 31 2008 jdelvare@suse.de +- supported.conf: Add new hwmon drivers, all unsupported. +* Thu Mar 27 2008 jeffm@suse.de +- Fixed up the rest of the reiserfs patch queue. +* Thu Mar 27 2008 jeffm@suse.de +- Updated reiserfs xattr patches. +* Thu Mar 27 2008 gregkh@suse.de +- fix merge error in patches.suse/supported-flag caused by me... +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7-git2 +* Thu Mar 27 2008 gregkh@suse.de +- update to 2.6.25-rc7 + - note that reiserfs xattr patches are now disabled due to merge + issues... +* Sun Mar 23 2008 teheo@suse.de +- patches.drivers/libata-improve-hpa-error-handling: libata: + improve HPA error handling (365534). +* Thu Mar 20 2008 gregkh@suse.de +- fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the + code is not upstream and we aren't allowed to add non-GPL exports to + our kernel tree. +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git5 +- refresh patches to apply cleanly +* Thu Mar 20 2008 gregkh@suse.de +- update to 2.6.25-rc6-git4 +- refresh patches to apply cleanly +* Thu Mar 20 2008 agruen@suse.de +- scripts/tar-up.sh: Rename --kbuild option to --source-timestamp. + For generating the source timestamp, use HEAD as the branch + name. +- rpm/get_release_number.sh.in: Don't try to synchronize release + numbers with kernel-dummy if the release number has been + specified explicitly (tar-up with --release-string, --timestamp, + or --source-timestamp). +* Thu Mar 20 2008 olh@suse.de +- remove patches.kernel.org/powerpc-needs-uboot + not needed without mpc51xx support +* Thu Mar 20 2008 olh@suse.de +- disable gianfar network driver and unused freescale drivers +* Wed Mar 19 2008 gregkh@suse.de +- patch refreshes due to version update +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6-git3 +- Update config files. +* Wed Mar 19 2008 gregkh@suse.de +- Update to 2.6.25-rc6 + - which deleted the following patches: + - patches.fixes/hibernation-snapshot-numa-workaround.patch + - patches.fixes/acpi-fix-double-log-level.patch + - patches.fixes/acpi_fix_mem_corruption.patch + - patches.kernel.org/patch-2.6.25-rc5 + - patches.kernel.org/patch-2.6.25-rc5-git3 +- Update config files. +- delete patches.arch/x86-nvidia-timer-quirk as it is not being used. +* Wed Mar 19 2008 olh@suse.de +- remove patches.arch/ppc-efika-ipic.patch + disable mpc51xx support instead +* Tue Mar 18 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Changed to just match %%ix86 +* Tue Mar 18 2008 olh@suse.de +- add patches.arch/ppc-efika-ipic.patch + fix a crash in init_ipic_sysfs on efika +* Mon Mar 17 2008 agruen@suse.de +- post.sh: Fix a syntax error when creating the initrd. +* Mon Mar 17 2008 jbeulich@novell.com +- patches.xen/xen-quicklist.patch: Delete. +- Update i386 Xen config file. +- patches.xen/xen3-patch-2.6.25-rc5-rc6: 2.6.25-rc6. +- patches.xen/xen3-auto-xen-kconfig.diff, + patches.xen/xen3-fixup-kconfig, + 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-rc5, + patches.xen/xen-x86-no-lapic, + patches.xen/xen-x86-panic-no-reboot: Various adjustments. +* Sun Mar 16 2008 jeffm@suse.de +- rpm/kernel-binary.spec.in: Added an RPM conflict for 32-bit + kernels and 64-bit glibc to avoid installing a 32-bit kernel + with 64-bit userspace. (364433, et al) +* Fri Mar 14 2008 jeffm@suse.de +- scripts/tar-up.sh: Added --kbuild option to autogenerate + release number based on branch and timestamp. +* Fri Mar 14 2008 jeffm@suse.de +- patches.apparmor/export-security_inode_permission-for-aufs: + LSM: Export security_inode_permission for aufs (356902). +* Fri Mar 14 2008 agruen@suse.de +- Boot loader: do the same during initial installation as when + updating a kernel package (FATE 302660). +* Thu Mar 13 2008 gregkh@suse.de +- Update to 2.6.25-rc5-git3 +* Thu Mar 13 2008 olh@suse.de +- disable unuses pata platform and ibm newemac driver on powerpc +* Thu Mar 13 2008 olh@suse.de +- add patches.xen/xen-quicklist.patch + fix kernel-xen compile, readd CONFIG_QUICKLIST for xen +* Wed Mar 12 2008 gregkh@suse.de +- remove alpha configs as they are no longer used +* Wed Mar 12 2008 gregkh@suse.de +- Enabled CONFIG_UNUSED_SYMBOLS for now. It will be disabled + after the next openSUSE alpha release. It is being enabled + for now to let some kmp packages still work while their + maintainers are working to update them with the 2.6.25 + kernel changes. +* Wed Mar 12 2008 gregkh@suse.de +- refresh patches to apply cleanly +* Wed Mar 12 2008 gregkh@suse.de +- update to 2.6.25-rc5-git2 +* Wed Mar 12 2008 sassmann@suse.de +- patches.arch/ppc-ps3-rename-wireless-interface.patch: + rename ps3 wireless interface from eth? to wlan? for better + handling in udev +* Wed Mar 12 2008 jbeulich@novell.com +- Update Xen patches to 2.6.25-rc5 and c/s 471. +- patches.xen/xen3-aslr-i386-and-x86_64-randomize-brk.patch: + Delete. +- patches.xen/xen3-aslr-pie-executable-randomization.patch: + Delete. +- patches.xen/xen3-early-firewire.diff: Delete. +- Update x86 config files. +- config.conf: Re-enable Xen configs. +* Tue Mar 11 2008 gregkh@suse.de +- add usb persist for storage devices across suspend to ram. This is going to + be in 2.6.26, just missed the .25 merge window. +* Tue Mar 11 2008 gregkh@suse.de +- Update to 2.6.26-rc5-git1 +- Update config files. +* Tue Mar 11 2008 gregkh@suse.de +- update to 2.6.25-rc5 +* Mon Mar 10 2008 agruen@suse.de +- scripts/tar-up.sh: Don't lose the EXTRAVERSION when overriding + the release number with --release-string or --timestamp. +* Sun Mar 09 2008 jeffm@suse.de +- patches.fixes/hibernation-snapshot-numa-workaround.patch: + swsusp: workaround for crash on NUMA (kernel.org#9966). +* Sat Mar 08 2008 agruen@suse.de +- Encode the EXTRAVERSION part of kernel release numbers in the + RPM release instead of in the version. This resolves the problem + that kernel releases like 2.6.25-rc4 would result in a package + with a higher version than 2.6.25 according to RPM's versioning + scheme (bug 271712). +* Fri Mar 07 2008 schwab@suse.de +- Update kdb patches. +* Thu Mar 06 2008 trenn@suse.de +- patches.fixes/acpi_fix_mem_corruption.patch: ACPI: Fix mem + corruption (350017). +- patches.fixes/acpi_thermal_passive_cleanup.patch: Warn user + about a BIOS bug in asus boards (350017). +* Thu Mar 06 2008 gregkh@suse.de +- Update s390 config files. +* Thu Mar 06 2008 gregkh@suse.de +- update to 2.6.24-rc5-git1 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_GROUP_SCHED +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_HIGH_RES_TIMERS on i386 +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_USB_PERSIST for vanilla config files +* Wed Mar 05 2008 gregkh@suse.de +- refresh patches to apply cleanly with no fuzz +- enable CONFIG_USB_PERSIST so that users can enable this if they want +* Wed Mar 05 2008 gregkh@suse.de +- update the vanilla config files for CONFIG_DEBUG_RODATA +* Wed Mar 05 2008 gregkh@suse.de +- enable CONFIG_DEBUG_RODATA (Not really a debug option, something + we need in all of our kernels.) +* Wed Mar 05 2008 gregkh@suse.de +- Update vanilla config files. +* Wed Mar 05 2008 jbeulich@novell.com +- patches.fixes/parport-mutex, + patches.suse/stack-unwind: Fix merge mistakes. +- Update i386 config files. +* Wed Mar 05 2008 gregkh@suse.de +- Update tree to 2.6.25-rc4 +* Wed Mar 05 2008 fseidel@suse.de +- add patches.fixes/fat_detect_media_wo_parttable.patch and + patches.fixes/fat_valid_media.patch: + detect FAT formated medias without partition table correctly + (bnc 364365) +* Tue Mar 04 2008 olh@suse.de +- add patches.kernel.org/s390-defkeymap.patch + Build fix for drivers/s390/char/defkeymap.c +* Tue Mar 04 2008 olh@suse.de +- enable ext2/3 acl support in ps3 kernel +* Tue Mar 04 2008 olh@suse.de +- Update to 2.6.25-rc3-git5 +* Tue Mar 04 2008 olh@suse.de +- use suffix -ps3 for PS3 kernel, it is only used in otheros.bld +* Mon Mar 03 2008 lmb@suse.de +- rpm/kernel-binary.spec.in: Require udev >= 118. +* Mon Mar 03 2008 ak@suse.de +- patches.arch/x86-nvidia-timer-quirk: Delete. + PCI device ID list still not complete and let's have the same + crap as mainline for now. It would be better to fix the PCI + ID lists (#302327) +* Sun Mar 02 2008 olh@suse.de +- add patches.fixes/ibmvstgt-fixes.patch + fix oops in ibmvstgt init function +* Fri Feb 29 2008 olh@suse.de +- add patches.arch/ppc-pci-bogus-resources.patch + fix bogus test for unassigned resources +* Thu Feb 28 2008 olh@suse.de +- disable CONFIG_CRYPTO_DEV_HIFN_795X on ppc32 due to __divdi3 usage +- update patches.kernel.org/powerpc-needs-uboot + disable mkimage call in arch/powerpc/boot/wrapper +* Thu Feb 28 2008 olh@suse.de +- update patches.kernel.org/fixed-phy-select + add dependency on libphy=y +* Wed Feb 27 2008 jdelvare@suse.de +- patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a + duplicate log level. +* Wed Feb 27 2008 trenn@suse.de +- patches.fixes/acpi_force-fan-active.patch: Delete. +* Tue Feb 26 2008 sdietrich@suse.de +- remove obsolete adaptive-locks patches + patches.rt/rtmutex-adaptive-locks.patch: Delete. + patches.rt/rtmutex-adjust-pi_lock-usage-in-wakeup.patch: Delete. + patches.rt/rtmutex-optimize-wakeup.patch: Delete. + patches.rt/rtmutex-rearrange.patch: Delete. + patches.rt/rtmutex-remove-extra-try.patch: Delete. + patches.rt/rtmutex-adaptive-mutexes.patch: Delete. + patches.rt/rtmutex-adaptive-timeout.patch: Delete. + patches.rt/rtmutex-lateral-steal.patch: Delete. + patches.rt/rtmutex-lateral-steal-sysctl.patch: Delete. +* Tue Feb 26 2008 sassmann@suse.de +- remove patches included upstream + patches.arch/ppc-ps3-gelic-cleanup.patch + patches.arch/ppc-ps3-gelic-endianness.patch + patches.arch/ppc-ps3-gelic-ethernet-linkstatus.patch + patches.arch/ppc-ps3-gelic-fix-fallback.diff + patches.arch/ppc-ps3-gelic-multiple-interface.patch + patches.arch/ppc-ps3-gelic-remove-duplicate-ethtool-handlers.patch + patches.arch/ppc-ps3-gelic-wireless-v2.patch +* Tue Feb 26 2008 jeffm@suse.de +- Update config files: Disabled CONFIG_INPUT_YEALINK per an old + request from AJ. +* Tue Feb 26 2008 jeffm@suse.de +- Update to 2.6.25-rc3. +* Sun Feb 24 2008 sdietrich@suse.de +- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete. +- patches.rt/0002-sched-track-highest-prio-task-queued.patch: + Delete. +- patches.rt/0003-sched-add-RT-task-pushing.patch: Delete. +- patches.rt/0004-sched-add-rt-overload-tracking.patch: Delete. +- patches.rt/0005-sched-pull-RT-tasks-from-overloaded-runqueues.patch: + Delete. +- patches.rt/0006-sched-push-RT-tasks-from-overloaded-CPUs.patch: + Delete. +- patches.rt/0007-sched-disable-standard-balancer-for-RT-tasks.patch: + Delete. +- patches.rt/0008-sched-add-RT-balance-cpu-weight.patch: Delete. +- patches.rt/0009-sched-clean-up-this_rq-use-in-kernel-sched_rt.c.patch: + Delete. +- patches.rt/0010-sched-de-SCHED_OTHER-ize-the-RT-path.patch: + Delete. +- patches.rt/0011-sched-break-out-search-for-RT-tasks.patch: + Delete. +- patches.rt/0012-sched-RT-balancing-include-current-CPU.patch: + Delete. +- patches.rt/0013-sched-pre-route-RT-tasks-on-wakeup.patch: + Delete. +- patches.rt/0014-sched-optimize-RT-affinity.patch: Delete. +- patches.rt/0015-sched-wake-balance-fixes.patch: Delete. +- patches.rt/0016-sched-RT-balance-avoid-overloading.patch: + Delete. +- patches.rt/0017-sched-break-out-early-if-RT-task-cannot-be-migrated.patch: + Delete. +- patches.rt/0018-sched-RT-balance-optimize.patch: Delete. +- patches.rt/0019-sched-RT-balance-optimize-cpu-search.patch: + Delete. +- patches.rt/0020-sched-RT-balance-on-new-task.patch: Delete. +- patches.rt/0021-sched-clean-up-pick_next_highest_task_rt.patch: + Delete. +- patches.rt/0022-sched-clean-up-find_lock_lowest_rq.patch: + Delete. +- patches.rt/0023-sched-clean-up-overlong-line-in-kernel-sched_debug.patch: + Delete. +- patches.rt/0024-sched-clean-up-kernel-sched_rt.c.patch: Delete. +- patches.rt/0025-sched-remove-rt_overload.patch: Delete. +- patches.rt/0026-sched-remove-leftover-debugging.patch: Delete. +- patches.rt/0027-sched-clean-up-pull_rt_task.patch: Delete. +- patches.rt/0028-sched-clean-up-schedule_balance_rt.patch: + Delete. +- patches.rt/0029-sched-add-sched-domain-roots.patch: Delete. +- patches.rt/0030-sched-update-root-domain-spans-upon-departure.patch: + Delete. +- patches.rt/0031-Subject-SCHED-Only-balance-our-RT-tasks-within-ou.patch: + Delete. +- patches.rt/0032-sched-fix-sched_rt.c-join-leave_domain.patch: + Delete. +- patches.rt/0033-sched-remove-unused-JIFFIES_TO_NS-macro.patch: + Delete. +- patches.rt/0034-sched-style-cleanup-2.patch: Delete. +- patches.rt/0035-sched-add-credits-for-RT-balancing-improvements.patch: + Delete. +- patches.rt/0036-sched-reactivate-fork-balancing.patch: Delete. +- patches.rt/0037-sched-whitespace-cleanups-in-topology.h.patch: + Delete. +- patches.rt/0038-sched-no-need-for-affine-wakeup-balancing-in.patch: + Delete. +- patches.rt/0039-sched-get-rid-of-new_cpu-in-try_to_wake_up.patch: + Delete. +- patches.rt/0040-sched-remove-do_div-from-__sched_slice.patch: + Delete. +- patches.rt/0041-sched-RT-balance-replace-hooks-with-pre-post-sched.patch: + Delete. +- patches.rt/0042-sched-RT-balance-add-new-methods-to-sched_class.patch: + Delete. +- patches.rt/0043-sched-RT-balance-only-adjust-overload-state-when-c.patch: + Delete. +- patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: + Delete. +- Remove scheduler patches already upstream in 2.6.25-rc1 +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/libertas-section-conflict: libertas: fix + section conflict. +* Sat Feb 23 2008 jeffm@suse.de +- Enabled patches.kernel.org/ps3-lpm-include +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/spu_profiler-include: powerpc: spu_profiler + build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/ps3-lpm-include: ps3: lpm build fix. +* Sat Feb 23 2008 jeffm@suse.de +- patches.kernel.org/fixed-phy-select: powerpc: FSL_SOC requires + FIXED_PHY. +- patches.kernel.org/lguest-fixups: lguest: Fix asm-offsets_32 + with correct config option. +* Sat Feb 23 2008 jeffm@suse.de +- Build fixes for ia64 and i386. +* Sat Feb 23 2008 jeffm@suse.de +- Update to 2.6.25-rc2-git6. + - Removed: + - patches.arch/ppc-pegasos-pata_via-fixup.patch: Delete. + - patches.arch/ppc-pegasos-console-autodetection.patch: Delete. + - patches.arch/ppc-ps3-make-dev_id-and-bus_id-u64.diff: Delete. + - patches.arch/acpi_autoload_bay.patch: Delete. + - patches.arch/small-acpica-extension-to-be-able-to-store-the-name-of.patch: + Delete. + - patches.arch/export-acpi_check_resource_conflict.patch: Delete. + - patches.drivers/early-firewire.diff: Delete. + - patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better: + Delete. + - patches.drivers/libata-implement-force-parameter: Delete. + - patches.drivers/igb-1.0.8-k2: Delete. + - patches.drivers/always-announce-new-usb-devices.patch: Delete. + - patches.drivers/nozomi.patch: Delete. + - patches.drivers/libata-quirk_amd_ide_mode: Delete. + - patches.fixes/acpi_autoload_baydock.patch: Delete. + - patches.fixes/bluetooth_hci_dev_put.patch: Delete. + - patches.fixes/bluetooth_hci_conn_childs.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan1.patch: Delete. + - patches.fixes/mac80211-fix-hw-scan2.patch: Delete. + - patches.fixes/libiscsi-missing-semicolon.diff: Delete. + - patches.fixes/pci-quirk-enable-smbus-on-hp-xw4100.patch: Delete. + - patches.kernel.org/patch-2.6.24.1: Delete. + - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Delete. + - patches.suse/squashfs.patch.fixup: Delete. + - patches.suse/aslr-pie-executable-randomization.patch: Delete. + - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: Delete. + - Xen and RT currently disabled. + - SquashFS may not work. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: fixed and renabled check +* Fri Feb 22 2008 sdietrich@suse.de +- embargoed-patches: eliminate embargoed patches abuse. +* Fri Feb 22 2008 jeffm@suse.de +- scripts/embargo-filter: Disable check for non-existant patches. +* Fri Feb 22 2008 schwab@suse.de +- Update kdb patches. +* Fri Feb 22 2008 jbeulich@novell.com +- config/i386/xenpae: Rename to config/i386/xen. +- config.conf: Delete i386/xenpae. +* Thu Feb 21 2008 sdietrich@suse.de +- Update config files: update RT options for adaptive RT locks +* Thu Feb 21 2008 sdietrich@suse.de +- patches.rt/rtmutex-adaptive-mutexes.patch: cleanup. +- patches.rt/rtmutex-adaptive-timeout.patch: cleanup. +- patches.rt/rtmutex-lateral-steal-sysctl.patch: sysctl for + runtime-control of lateral mutex stealing. +* Thu Feb 21 2008 jbeulich@novell.com +- Update Xen patches to c/s 425. +- patches.xen/sfc-network-driver: Solarflare: Standard network driver + (disabled until status clarified). +- patches.xen/sfc-resource-driver: Solarflare: Resource driver + (disabled until status clarified). +- Update Xen config files. +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v20 +* Wed Feb 20 2008 ghaskins@suse.de +- adaptive-locking v19 +* Wed Feb 20 2008 jeffm@suse.de +- Update config files for dmraid45. +* Wed Feb 20 2008 bwalle@suse.de +- rpm/kernel-binary.spec.in: add PAGESIZE detection for + makedumpfile.config from the .config file also for PPC64 +* Wed Feb 20 2008 fseidel@suse.de +- patches.fixes/bluetooth_hci_dev_put.patch, + patches.fixes/bluetooth_hci_conn_childs.patch, + patches.fixes/bluetooth_hci_unregister_sysfs.patch: + fix kernel crash after removing bluetooth adapter (bnc 359546) +* Tue Feb 19 2008 jeffm@suse.de +- patches.suse/dm-raid45-2.6.24-20080602a.patch: DMRAID45 module. +* Fri Feb 15 2008 sdietrich@suse.de +- Update to latest patch set: +- patches.rt/rearrange_rtspinlock_sleep: + [PATCH 02/10] rearrange rtspinlock sleep +- patches.rt/optimize_rtspinlock_wakeup: + [PATCH 03/10] optimize rtspinlock wakeup +- patches.rt/adaptive_RT_spinlock_support: + [PATCH 04/10] Adaptive RT spinlock support +- patches.rt/add_timeout_mechanism: [PATCH 05/10] + add a loop counter based timeoutmechanism +- patches.rt/adaptive_mutexes: [PATCH 06/10] adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + [PATCH 07/10] Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: [PATCH 08/10] + optimize the !printk fastpath throughthe lock acquisition +- patches.rt/remove_extra_call_try_to_take_lock: + [PATCH 09/10] remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: [PATCH 10/10] allow + rt-mutex lock-stealing toinclude lateral priority +* Fri Feb 15 2008 sdietrich@suse.de +- embargoed-patches: (embargo development RT throughput patches) +- Update config files (RT config options) +- patches.rt/optimize_rtspinlock_wakeup: optimize rtspinlock + wakeup. +- patches.rt/adaptive_RT_spinlock_support: Adaptive RT spinlock + support. +- patches.rt/add_timeout_mechanism: add + a loop counter based timeout mechanism +- patches.rt/adaptive_mutexes: adaptive mutexes +- patches.rt/adjust_pi_lock_usage_in_wakeup: + Adjust pi_lock usage in wakeup +- patches.rt/optimize_printk_fastpath: optimize + the !printk fastpath through the lockacquisition +- patches.rt/remove_extra_call_try_to_take_lock: + remove the extra call to try_to_take_lock +- patches.rt/lateral_lock_steal: allow rt-mutex + lock-stealing to include lateralpriority +- patches.rt/rearrange_rtspinlock_sleep: cleanup rtspinlock sleep +* Thu Feb 14 2008 jeffm@suse.de +- Removed unused OCFS2 patches. +* Thu Feb 14 2008 jeffm@suse.de +- Removed old commented out ocfs2 patchset. +* Thu Feb 14 2008 teheo@suse.de +- patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA + IDE mode quirk (345124). +* Wed Feb 13 2008 jeffm@suse.de +- patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed + section conflict. +* Wed Feb 13 2008 jeffm@suse.de +- Update config files. +* Wed Feb 13 2008 jeffm@suse.de +- Merged and re-enabled OCFS2 userspace clustering +* Wed Feb 13 2008 jdelvare@suse.de +- config/*: Don't build i2c algorithm drivers that we do not use. +- supported.conf: Drop i2c-elektor and i2c-algo-pcf, we don't ship + them. +* Tue Feb 12 2008 teheo@suse.de + Build fix for section mismatch check. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Mon Feb 11 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: Delete. +- patches.drivers/libata-implement-force-parameter: libata: + implement libata.force module parameter (337610). +* Fri Feb 08 2008 gregkh@suse.de +- Update to 2.6.24.1 + - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 + - lots of USB device ids updated + - lots of other bugfixes + - removed patches.fixes/bootstrap-memoryless-node.patch as it is now + contained within. +* Fri Feb 08 2008 gregkh@suse.de +- Move ipv6-no-autoconf to xen directory as it is a Xen bugfix +* Fri Feb 08 2008 bwalle@suse.de +- patches.arch/ppc-fix-prpmc2800: remove patch since it's not needed + with current binutils any more +* Fri Feb 08 2008 bwalle@suse.de +- patches.drivers/igb-2007-12-11: Delete. +- patches.drivers/igb-1.0.8-k2: Update to latest version which is + also upstream now in the 2.6.25 tree. +* Fri Feb 08 2008 gregkh@suse.de +- Remove NO_BRP_NOEXECSTACK from the .spec files as it is obsolete + and doesn't do anything anymore. +* Fri Feb 08 2008 jbeulich@novell.com +- patches.xen/xen3-auto-common.diff, + patches.xen/xen3-patch-2.6.23: fix merge mistake. +* Fri Feb 08 2008 jbenc@suse.cz +- Update config files: disabled CONFIG_BCM43XX. +* Wed Feb 06 2008 jeffm@suse.de +- patches.apparmor/vfs-mkdir.diff: Added missing case in + kernel/cgroup.c +* Wed Feb 06 2008 fseidel@suse.de +- updated patches.drivers/nozomi.patch: mainline info +* Wed Feb 06 2008 sdietrich@suse.de +- Update config files: RT@1KHz, sched groups & cpusets enabled. +* Wed Feb 06 2008 olh@suse.de +- enable bnx2 on ppc64 (bnc 359114 - LTC42106) +* Wed Feb 06 2008 gregkh@suse.de +- remove unused lockd patches: + - patches.suse/lockd-switchable-statd + - patches.suse/lockd-kernel-statd + - patches.suse/lockd-suse-config + - patches.suse/lockd-max-hosts-dynamic +* Wed Feb 06 2008 oneukum@suse.de +- patches.suse/usb_printer_no_auto.diff: Delete. + Obsoleted by mainline change +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) for RT kernels +* Tue Feb 05 2008 gregkh@suse.de +- Enable CONFIG_TASK_IO_ACCOUNTING (bnc 356547) +* Thu Jan 31 2008 sdietrich@suse.de +- patches.rt/megasas_IRQF_NODELAY.patch: Convert megaraid sas + IRQ to non-threaded IRQ. +- patches.rt/version.patch: Delete (unused). +* Thu Jan 31 2008 jbenc@suse.cz +- patches.fixes/mac80211-fix-hw-scan1.patch, + patches.fixes/mac80211-fix-hw-scan2.patch: mac80211: hardware + scan rework (bnc#307050). +* Thu Jan 31 2008 sdietrich@suse.de +- Remove a legacy tweak carried over from the 10.3 Kernel, + enable the affinity load-balancing sysctl. +* Wed Jan 30 2008 sdietrich@suse.de +- patches.rt/x86-ticket-lock.patch: FIFO ticket lock spinlocks + for x86 (RT). +- patches.rt/rt-mutex-i386.patch: Resolve conflicts. +* Tue Jan 29 2008 olh@suse.de +- really skip kernel-ps3 in suse_kernel_module_package rpm macro +* Tue Jan 29 2008 jbeulich@novell.com +- Update Xen patches to 2.6.24 final and c/s 399. +- patches.xen/xen3-seccomp-disable-tsc-option: [PATCH seccomp: + make tsc disabling optional (191123). +* Sat Jan 26 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rt1 (many patches in patches.rt refreshed). +- patches.rt/series: Delete (unused). +* Sat Jan 26 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + use struct device_attribute to fix oops on boot +* Sat Jan 26 2008 jeffm@suse.de +- scripts/sequence-patch.sh: Updated to include $EXTRA_SYMBOLS in + $PATCH_DIR (e.g.: --symbol=RT creates linux-2.6.24-RT) +* Fri Jan 25 2008 jeffm@suse.de +- patches.rt/rcu-new-1.patch: Updated context against 2.6.24. +* Fri Jan 25 2008 olh@suse.de +- add patches.fixes/bootstrap-memoryless-node.patch + slab: fix bootstrap on memoryless node +* Fri Jan 25 2008 gregkh@suse.de +- refresh allmost all patches to apply cleanly and have a proper + diffstat (except for the xen patches, they were left alone...) +* Fri Jan 25 2008 gregkh@suse.de +- Update to 2.6.24 +* Thu Jan 24 2008 olh@suse.de +- always skip kernel-ps3 in suse_kernel_module_package rpm macro +* Thu Jan 24 2008 sdietrich@suse.de +- Update config files: set SYSFS_DEPRECATED for reverse + compatibility with SLERT +* Tue Jan 22 2008 olh@suse.de +- update patches.arch/ppc-efika-modalias.patch + simplify patch +* Tue Jan 22 2008 agruen@suse.de +- patches.rpmify/cloneconfig.diff: Adjust to upstream i386 + x86_64 + merge (347712). +* Tue Jan 22 2008 sassmann@suse.de +- add defconfig for ps3 kernel +- add entry for ps3 defconfig in config.conf +- add support for kernels without loadable modules to rpm/kernel-binary.spec.in +- include ps3 target in scripts/tar-up_and_run_mbuild.sh +* Mon Jan 21 2008 sdietrich@suse.de +- Update config files (RT) +* Mon Jan 21 2008 sdietrich@suse.de +- Linux-RT 2.6.24-rc8-rt1 +* Mon Jan 21 2008 olh@suse.de +- add patches.arch/ppc-pegasos-pata_via-fixup.patch + call chrp_pci_fixup_vt8231_ata() later to allow pata_via usage +* Mon Jan 21 2008 aj@suse.de +- Remove unused config/s390/rt. +* Sat Jan 19 2008 jeffm@suse.de +- patches.rt/irq-flags-unsigned-long.patch: Delete. +* Sat Jan 19 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git2. +* Fri Jan 18 2008 jeffm@suse.de +- Enabled 2.6.24-rc8-git1. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: Delete. The patch + is not correct, there exist two cards with different chipsets but + the same USB ID. +* Fri Jan 18 2008 jbenc@suse.cz +- patches.fixes/rt2x00-remove-duplicate-id.patch: rt2x00: remove + duplicate USB ID (350956). +* Fri Jan 18 2008 olh@suse.de +- sync powerpc vanilla with default .config to enable libata +* Fri Jan 18 2008 olh@suse.de +- add patches.arch/ppc-pegasos-mv643xx_eth-modalias.patch + provide module alias platform:mv643xx_eth +* Thu Jan 17 2008 jeffm@suse.de +- Update to 2.6.24-rc8-git1. +* Wed Jan 16 2008 jeffm@suse.de +- Update to 2.6.24-rc8. +* Sun Jan 13 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git5. +* Fri Jan 11 2008 jeffm@suse.de +- Update to 2.6.24-rc7-git3. +* Fri Jan 11 2008 jbeulich@novell.com +- Update Xen patches to c/s 372 and 2.6.24-rc7. +- patches.xen/xen3-aux-at_vector_size.patch: Delete. +- Update Xen config files. +* Thu Jan 10 2008 olh@suse.de +- update patches.arch/ppc-efika-ethernet-phy.patch + move Forth code to fixup_device_tree_efika +* Wed Jan 09 2008 schwab@suse.de +- Fix debug package build. +* Wed Jan 09 2008 oneukum@suse.de +- Update config files. CONFIG_USB_SUSPEND default +* Wed Jan 09 2008 schwab@suse.de +- Update kdb patches. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Another try... +* Wed Jan 09 2008 jeffm@suse.de +- Update config files: Enabled CONFIG_SCSI_SAS_ATA. (346990) +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: Fix CONFIG_FRAME_POINTER build. +* Wed Jan 09 2008 jbeulich@novell.com +- patches.suse/stack-unwind: DWARF2 EH-frame based stack + unwinding. +- patches.xen/xen3-stack-unwind: DWARF2 EH-frame based stack + unwinding. +- Update config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: Fixed so it only applies + to i386, and updated config files. +* Tue Jan 08 2008 jeffm@suse.de +- patches.fixes/seccomp-disable-tsc-option: [PATCH] seccomp: + make tsc disabling optional (191123). +* Tue Jan 08 2008 olh@suse.de +- add patches.arch/ppc-efika-ethernet-phy.patch + drop patches.arch/ppc-efika-bestcomm-ethernet.patch + provide phy-handle property for fec_mpc52xx (347234) +* Tue Jan 08 2008 teheo@suse.de +- patches.drivers/libata-force-cable-type: libata: implement + libata.force_cbl parameter (337610). +* Mon Jan 07 2008 jeffm@suse.de +- Update to 2.6.24-rc7. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-sata_nv-disable-ADMA: sata_nv: disable + ADMA by default (346508). +* Mon Jan 07 2008 teheo@suse.de + Bug 347708. port_info for vmw was being assigned to the wrong index. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Mon Jan 07 2008 teheo@suse.de + As the rest of kernel has caught up now, this one is no longer + necessary. +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +* Mon Jan 07 2008 teheo@suse.de +- patches.drivers/libata-fix-up-build-after-upstream-update.patch: + Delete. +- patches.drivers/libata-ata_piix-vmw-ign-DMA-err: ata_piix: + ignore ATA_DMA_ERR on vmware ich4 (258256). +* Fri Jan 04 2008 jeffm@suse.de +- Update config files for -vanilla. +* Fri Jan 04 2008 jeffm@suse.de +- patches.rt/timer-freq-tweaks.patch: Adjusted context. +* Fri Jan 04 2008 jeffm@suse.de +- Update config files. +* Fri Jan 04 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git11. +* Wed Jan 02 2008 jblunck@suse.de +- rpm/kernel-binary.spec.in: Copy debug sources to a proper location. +* Tue Jan 01 2008 jeffm@suse.de +- Update to 2.6.24-rc6-git7. +* Tue Jan 01 2008 jeffm@suse.de +- scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. + We add it manually when building the patch list. This allows + the script to work with the RT kernel without having to remove + all the other configs from config.conf first. diff --git a/linux-3.1-rc8.tar.bz2 b/linux-3.1-rc8.tar.bz2 new file mode 100644 index 00000000..063d6076 --- /dev/null +++ b/linux-3.1-rc8.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a266339035e4e5523a097152c0ceb9a971211558fb472e88a33c151e8139d02 +size 77219233 diff --git a/linux-3.1-rc8.tar.bz2.part b/linux-3.1-rc8.tar.bz2.part deleted file mode 100644 index c9fb5f8d..00000000 Binary files a/linux-3.1-rc8.tar.bz2.part and /dev/null differ diff --git a/log.sh b/log.sh new file mode 100644 index 00000000..e53163a1 --- /dev/null +++ b/log.sh @@ -0,0 +1,167 @@ +#! /bin/sh + +# log.sh - Automate insertion of patches into a kernel rpm tree managed +# with series.conf +# +# Usage example: +# +# osc branch openSUSE:11.3/kernel-source +# osc co home:philipsb:branches:openSUSE:11.3:Update:Test/kernel-source +# mv ~/linux-2.6/driver-fix-for-something.patch . +# echo -e "\tpatches.drivers/driver-fix-for-something.patch" >> series.conf +# ./log.sh +# osc commit + +############################################################################# +# Copyright (c) 2004-2006,2008-2010 Novell, Inc. +# All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, contact Novell, Inc. +# +# To contact Novell about this file by physical or electronic mail, +# you may find current contact information at www.novell.com +############################################################################# + +# Construct a changes entry and commit log from a patch. + +CHANGES=kernel-source.changes + +trap 'rm -rf "$tmpdir"' EXIT +tmpdir=$(mktemp -d /tmp/${0##*/}.XXXXXX) +message=$tmpdir/message + +log_entry() { + local entry=$1 + + echo "$entry" \ + | fmt --width 65 \ + | sed -e '1s/^/- /' -e '2,$s/^/ /' \ + >> $message +} + + +patch_meta() { + local patch=$1 + + subject=$(formail -c -x Subject < "$patch" \ + | sed -e 's, *\[[#/ A-Za-z0-9-]*\],,') + subject=${subject## } + subject=${subject%.} + + set -- $(formail -c -x References -x Reference < "$patch") + references="$*" +} + +patch_log_entry() { + local patch=$1 subject references old_subj old_ref old_patch="$tmpdir/old" + + git show "HEAD:$patch" >"$old_patch" 2>/dev/null + patch_meta "$old_patch" + old_subj="$subject" + old_ref="$references" + + patch_meta "$patch" + + local msg + if test -z "$subject" -o "$subject" != "$old_subj"; then + msg="$subject${references:+ ($references)}" + elif test "$references" != "$old_ref"; then + if test -n "$references"; then + msg="Update references ($references)" + fi + else + msg="Refresh" + fi + + log_entry "$patch: $msg${msg:+.}" +} + +find_patches() { + osc diff series.conf \ + | sed -n "s/^+\s*\(patches.*\)/\1/p" +} + +for file in "$@" $(find_patches); do + dirname=$(dirname $file) + basename=$(basename $file) + archive=$dirname.tar.bz2 + + if [ ! -f $basename ]; then + echo "ERROR: $basename added to series.conf but doesn't exist in $PWD" + exit 1 + fi + + if [ ! -d $dirname ]; then + tar xvf $archive + fi + + mv $basename $dirname + rm $archive + tar cfj $archive $dirname + + files[${#files[@]}]=$file +done + +if [ ${#files[@]} -eq 0 ]; then + echo "No modified files" >&2 + exit 1 +fi + +for file in "${files[@]}"; do + if [ "${file:0:1}" = - ]; then + log_entry "${file:1}: Delete." + else + case "$file" in + config/*) + if [ -z "$configs_updated" ]; then + log_entry "Update config files." + configs_updated=1 + fi + ;; + + patches.*) + patch_log_entry "$file" + ;; + + kabi/*/symvers-* | kabi/*/symtypes-* | kabi/*/symsets-* ) + if [ -z "$symvers_updated" ]; then + log_entry "Update reference module symbol versions." + symvers_updated=1 + fi + ;; + + series.conf) + # don't log changes in there + ;; + + *) + log_entry "$file: " + ;; + esac + fi +done + +if [ ! -s $message ]; then + echo "- " >> $message +fi + +if osc vc $CHANGES $message; then + entry=$(sed -ne '1,2d' -e '/^--*$/!p' -e '/^--*$/q' $CHANGES) + entry=${entry##$'\n'} + entry=${entry%%$'\n'} +fi + +for c in *.changes; do + [ $c = $CHANGES ] && continue + cp $CHANGES $c +done diff --git a/macros.kernel-source b/macros.kernel-source new file mode 100644 index 00000000..fcc1fe4c --- /dev/null +++ b/macros.kernel-source @@ -0,0 +1,43 @@ +# A few cross-distro definitions: +%kernel_module_package_release 1 +%kernel_module_package_buildreqs module-init-tools kernel-syms + +# Defines %flavors_to_build and %kernel_source() as a side effect. +%_kernel_module_package(n:v:r:t:f:Xp:b) \ +%{expand:%( \ + subpkg=%{-t*}%{!-t:/usr/lib/rpm/kernel-module-subpackage} \ + echo "%%define _suse_kernel_module_subpackage(n:v:r:f:p:b) %%{expand:%%(cd %_sourcedir; cat $subpkg; echo %%%%nil)}" \ + flavors_to_build= \ + flavors="%*" \ + for flavor in $(ls /usr/src/linux-obj/%_target_cpu 2>/dev/null); do \ + case " $flavors " in \ + (*" $flavor "*) \ + [ -n "%{-X}" ] && continue ;; \ + (*) \ + [ -z "%{-X}" -a -n "$flavors" ] && continue ;; \ + esac \ + krel=$(make -s -C /usr/src/linux-obj/%_target_cpu/$flavor kernelrelease) \ + kver=${krel%%-*} \ + flavors_to_build="$flavors_to_build $flavor" \ + echo "%%_suse_kernel_module_subpackage -n %{-n*}%{!-n:%name}-kmp -v %{-v*}%{!-v:%version} -r %{-r*}%{!-r:%release} %{-p} %{-b} $flavor $kver" \ + done \ + echo "%%global flavors_to_build${flavors_to_build:-%%nil}" \ + echo "%%{expand:%%(test -z '%flavors_to_build' && echo %%%%internal_kmp_error)}" \ + echo "%%global kernel_source() /usr/src/linux-obj/%_target_cpu/%%%%{1}" \ + echo "%%global kernel_module_package_moddir() updates" \ + \ + echo "%package -n %{-n*}%{!-n:%name}-kmp-_dummy_" \ + echo "Version: %version" \ + echo "Summary: %summary" \ + echo "Group: %group" \ + echo "%description -n %{-n*}%{!-n:%name}-kmp-_dummy_" \ + )} + +# kernel_module_package: simply pass on all options and arguments. +%kernel_module_package(n:v:r:t:f:xp:b) \ + %{expand:%%_kernel_module_package %{-x:-X} %{-n} %{-v} %{-r} %{-t} %{-f} %{-p} %*} + +# suse_kernel_module_package: invert the meaning of the -x flag. (You are not +# supposed to understand why a simple %{-x:}%{!-x:-x} won't work.) +%suse_kernel_module_package(n:v:r:s:f:xp:b) \ + %{expand:%%_kernel_module_package %{-x: }%{!-x:-X} %{-n} %{-v} %{-r} %{-s:-t %{-s*}} %{-f} %{-p} %*} diff --git a/minmem b/minmem new file mode 100644 index 00000000..a098c07e --- /dev/null +++ b/minmem @@ -0,0 +1 @@ +1048576 diff --git a/mkspec b/mkspec new file mode 100644 index 00000000..9988534a --- /dev/null +++ b/mkspec @@ -0,0 +1,329 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use File::Copy; +use Getopt::Long; + +my $dir = "."; +my $rpmrelease; +my $patches=""; + +GetOptions( + "patches=s" => \$patches, + "release=s" => \$rpmrelease +) or die "Usage: $0 [--release ] [--patches ]\n"; + +# flavor -> [supported archs] +my %flavor_archs = parse_config_conf(); +# subset to include in kernel-syms +my %syms_flavor_archs = parse_config_conf("syms"); + +# template name -> template body +my %templates = read_spec_templates(); + +# config.sh variables +my %vars = parse_config_sh(); +my ($srcversion, $variant, $vanilla_only) = + ($vars{'SRCVERSION'}, $vars{'VARIANT'}, $vars{'VANILLA_ONLY'}); +$vanilla_only ||= "0"; + +# rpm changelog +my $changelog = convert_changes(); + +# package name -> [summary, description] +my %binary_descriptions = parse_descriptions(); + +$patches="--patches $patches" if $patches; +my $patchversion = `$dir/compute-PATCHVERSION.sh $patches`; +chomp $patchversion; +my $rpmversion = $patchversion; +# stuff the -rcX tag into the rpm version if possible; +$rpmversion =~ s/\.0-rc/.rc/; +$rpmversion =~ s/-rc\d+//; +$rpmversion =~ s/-/./g; + +if (defined($rpmrelease)) { + # convince abuild that we really want this release number + xopen(my $fh, '>', "$dir/get_release_number.sh"); + print $fh "#!/bin/sh\n"; + print $fh "echo \"$rpmrelease.0\"\n"; + close($fh); + chmod(0755, "$dir/get_release_number.sh"); +} else { + $rpmrelease = ""; +} +$rpmrelease =~ s/[^.]$/$&./; +$rpmrelease =~ s/-/./g; + +my $sources = join("", $templates{source} =~ /\nSource\d+:[^\n]*/mg); +# Find all SourceN: foo.tar.bz2 lines and generate the NoSource: +# lines and the %setup line +my @tarballs = ($sources =~ /\nSource(\d+):[^\n]*\.tar\.bz2/mg); +my $nosource = join("\n", map { "NoSource: $_" } @tarballs); +# Source0 (the linux tarball) is unpacked manually +@tarballs = grep { $_ > 0 } @tarballs; +my $unpack_patches = join(" ", map { "-a $_" } @tarballs); +# List of scripts to automatically chmod +x before build +my $scripts = join(",", grep { is_script($_) } + ($sources =~ /\nSource\d+:\s*([^\s]*)/mg)); + +my %macros = ( + VARIANT => $variant, + VANILLA_ONLY => $vanilla_only, + SRCVERSION => $srcversion, + PATCHVERSION => $patchversion, + RPMVERSION => $rpmversion, + RELEASE_PREFIX => $rpmrelease, + SOURCES => $sources, + NOSOURCE => $nosource, + UNPACK_PATCHES => $unpack_patches, + SCRIPTS => $scripts, +); + +# binary spec files +for my $flavor (sort keys(%flavor_archs)) { + my ($summary, $description); + if (!exists($binary_descriptions{"kernel-$flavor"})) { + print STDERR "warning: no description for kernel-$flavor found\n"; + $summary = "The Linux Kernel"; + $description = "The Linux Kernel."; + } else { + $summary = $binary_descriptions{"kernel-$flavor"}->[0]; + $description = $binary_descriptions{"kernel-$flavor"}->[1]; + } + + do_spec('binary', "kernel-$flavor.spec", %macros, + FLAVOR => $flavor, + SUMMARY => $summary, + DESCRIPTION => $description, + ARCHS => join(" ", arch2rpm(@{$flavor_archs{$flavor}})), + PROVIDES_OBSOLETES => provides_obsoletes($flavor, @{$flavor_archs{$flavor}}), + ); +} +# 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 = ""; + my %all_archs; + for my $flavor (sort keys(%syms_flavor_archs)) { + next if $flavor eq "vanilla"; + my @archs = arch2rpm(@{$syms_flavor_archs{$flavor}}); + $all_archs{$_} = 1 for @archs; + $requires .= "%ifarch @archs\n"; + $requires .= "Requires: kernel-$flavor-devel = \%version-\%source_rel\n"; + $requires .= "%endif\n"; + } + chomp $requires; + if (keys(%all_archs)) { + do_spec('syms', "kernel-syms$variant.spec", %macros, + REQUIRES => $requires, + ARCHS => join(" ", sort(keys(%all_archs)))); + } +} + +exit 0; + + + +sub parse_config_conf { + my @symbols = @_; + my $symbols = join(' ', @symbols); + my %res; + + for my $arch (split(/\s+/, `$dir/arch-symbols --list`)) { + my @flavors = `$dir/guards $arch $symbols < $dir/config.conf`; + next if @flavors == 0; + chomp @flavors; + @flavors = map { s/.*\///; $_ } @flavors; + for my $flavor (@flavors) { + $res{$flavor} ||= []; + push(@{$res{$flavor}}, $arch); + } + } + for my $flavor (keys(%res)) { + $res{$flavor} = [sort @{$res{$flavor}}]; + } + return %res; +} + +sub read_spec_templates { + my %res; + + for my $template (qw(binary source syms docs)) { + xopen(my $fh, '<', "$dir/kernel-$template.spec.in"); + local $/ = undef; + $res{$template} = <$fh>; + close($fh); + } + return %res; +} + +# return a hash of config.sh variables +sub parse_config_sh { + my %res; + + xopen(my $fh, '<', "$dir/config.sh"); + while (<$fh>) { + chomp; + if (/^\s*([A-Z_]+)=(.*)/) { + $res{$1} = $2; + } + } + close($fh); + return %res; +} + +# convert kernel-source.changes to rpm changelog +sub convert_changes { + my $res = "\%changelog\n"; + my @progs = qw(/usr/lib/build/changelog2spec + /work/src/bin/tools/convert_changes_to_rpm_changelog); + + my $changesfile = "$dir/kernel-source$variant.changes"; + if (-e $changesfile) { + for my $prog (@progs) { + if (-x $prog) { + $res .= `$prog $changesfile`; + last; + } + } + } + chomp $res; + return $res; +} + +sub parse_descriptions { + my %res; + my $current; + my $blank = ""; + # 0 - expect summary, 1 - eating blank lines, 2 - reading description + my $state = 0; + + xopen(my $fh, '<', "$dir/package-descriptions"); + while (<$fh>) { + next if /^\s*#/; + + if (/^==+\s+([^\s]+)\s+==+\s*$/) { + my $package = $1; + if ($current) { + chomp $current->[1]; + } + $current = ["", ""]; + $res{$package} = $current; + $state = 0; + next; + } + if (/^$/) { + if ($state == 2) { + $blank .= $_; + } + next; + } + # non-blank line and not === package === + if ($state == 0) { + chomp; + $current->[0] = $_; + $state = 1; + } elsif ($state == 1) { + $current->[1] = $_; + $blank = ""; + $state = 2; + } else { + $current->[1] .= $blank; + $blank = ""; + $current->[1] .= $_; + } + } + if ($current) { + chomp $current->[1]; + } + close($fh); + return %res; +} + +sub is_script { + my $script = shift; + + return undef if $script =~ /\.(tar\.(gz|bz2)|in|conf)$/; + return undef if $script =~ /^README/; + return 1 if $script =~ /\.pl$/; + open(my $fh, '<', $script) or return undef; + sysread($fh, my $shebang, 2); + close($fh); + return 1 if $shebang eq "#!"; + return undef; +} + +sub arch2rpm { + if (wantarray) { + return map { _arch2rpm($_) } @_; + } + return _arch2rpm($_[0]); +} +sub _arch2rpm { + my $arch = shift; + return "\%ix86" if $arch eq "i386"; + return $arch; +} + +sub append_changelog { + my $changelog = $_[1]; + if ($_[0] =~ s/\%changelog$/$changelog/) { + return; + } + $_[0] .= $changelog; +} + +sub provides_obsoletes { + my $flavor = shift; + my @archs = @_; + my $res = ""; + + for my $arch (@archs) { + my @packs = `$dir/guards $arch $flavor <$dir/old-packages.conf`; + chomp @packs; + next if (!@packs); + my $rpmarch = arch2rpm($arch); + chomp $rpmarch; + $res .= "\%ifarch $rpmarch\n"; + $res .= "Provides: @packs\n"; + $res .= "Obsoletes: @packs\n"; + $res .= "\%endif\n"; + } + chomp $res; + return $res; +} + +sub do_spec { + my $template = shift; + my $specfile = shift; + my %macros = @_; + + my $text = $templates{$template}; + for my $m (keys %macros) { + $text =~ s/\@$m\@/$macros{$m}/g; + } + append_changelog($text, $changelog); + print "$specfile\n"; + xopen(my $fh, '>', "$dir/$specfile"); + print $fh $text; + close($fh); + + return if $specfile eq "kernel-source$variant.spec"; + my $changesfile = $specfile; + $changesfile =~ s/\.spec$//; + $changesfile .= ".changes"; + copy("$dir/kernel-source$variant.changes", $changesfile); +} + +sub xopen { + open($_[0], $_[1], $_[2]) or die "$_[2]: $!\n"; +} + diff --git a/modversions b/modversions new file mode 100644 index 00000000..df817f7a --- /dev/null +++ b/modversions @@ -0,0 +1,158 @@ +#! /usr/bin/perl -w + +use File::Basename; +use File::Path; +use File::Find; +use Getopt::Long; +use strict; + +my %symbol_type_name = ( + n => 'normal', t => 'typedef', e => 'enum', s => 'struct', u => 'union', + E => 'enum constant' +); + +my %definitions; +my %override; +my %override_locally; +my %locally_unknown; +my %locally_defined; + +sub expand_types($); +sub expand_types($) { + my ($definition) = @_; + local ($_, $1, $2); + + my @defn = split ' ', $definition; + for (@defn[1..$#defn]) { + if (/^(.)#(.*)/) { + #print "<<$defn[0] : $_>>\n"; + next if exists $locally_defined{$_}; + $locally_defined{$_} = 1; + + if ($locally_unknown{$_}) { + print "override " if $override_locally{$_}; + print "$_ $symbol_type_name{$1} $2 { UNKNOWN } \n"; + } else { + if (!exists $definitions{$_}) { + die "Missing definition of $symbol_type_name{$1} $2\n"; + } + expand_types("$_ $definitions{$_}"); + } + } + } + print "override " if $override_locally{$defn[0]}; + print "$definition\n"; +} + +sub pack_dump($$) { + my ($dir, $ext) = @_; + my @files; + + $ext = ".symtypes" unless defined $ext; + $dir =~ s/\/+$//; + + find(sub ($) { /\Q$ext\E$/ && push @files, $File::Find::name}, $dir); + map { s/^\Q$dir\E\/(.*)\Q$ext\E$/$1/ } @files; + + foreach my $file (sort @files) { + print "/* $file.o */\n"; + + local *FD; + open FD, "< $dir/$file$ext" + or die "$dir/$file$ext: $!\n"; + while () { + chomp; + + my $override = ""; + if (s/^override //) { + $override = $&; + } + + if (/^(\S)#(\S+)\s*(.*)/) { + my $sym = "$1#$2"; + my $definition = $3; + + if (/^$sym\s+$symbol_type_name{$1}\s+$2\s+{\s+UNKNOWN\s+}\s*$/) { + $_ = $override . substr($sym, 0, 1) . "##" . substr($sym, 2); + } else { + if (exists $definitions{$sym} && $definitions{$sym} eq $definition) { + if (($override ne "") == (exists $override{$sym})) { + next; + } + $_ = "$override$sym"; + } else { + $definitions{$sym} = $definition; + if ($override eq "") { + delete $override{$sym}; + } else { + $override{$sym} = 1; + $_ = "$override$_"; + } + } + } + } elsif ($override) { + $_ = "$override$_"; + } + print "$_\n"; + } + close FD; + print "\n"; + } +} + +sub unpack_dump($$) { + my ($dir, $ext) = @_; + + $ext = ".symref" unless defined $ext; + + while () { + next if /^$/; + chomp; + + if (/^\/\* (.*)\.o \*\//) { + close STDOUT; + mkpath(dirname("$dir/$1$ext")); + open STDOUT, "> $dir/$1$ext" + or die "$dir/$1$ext: $!\n"; + %locally_defined = (); + %locally_unknown = (); + %override_locally = %override; + next; + } + + my $override = /^override\s/; + s/^override\s//; + + if (/^([^ ])#(#?)([^ ]+) *(.*)$/) { + my $sym = "$1#$3"; + + if ($4 ne "") { + if (/\s+{\s+UNKNOWN\s+}\s*$/) { + $locally_unknown{$sym} = 1; + $override_locally{$sym} = $override; + } else { + $definitions{$sym} = $4; + $locally_unknown{$sym} = 0; + $override{$sym} = $override; + $override_locally{$sym} = $override; + } + } else { + $locally_unknown{$sym} = ($2 ne ""); + $override_locally{$sym} = $override; + } + next; + } elsif (/^([^# ]*)/) { + $override_locally{$1} = $override; + } + expand_types($_); + } +} + +my ($pack, $unpack, $ext); +GetOptions("pack" => \$pack, "unpack" => \$unpack, "ext:s" => \$ext) + && ($pack || $unpack) && @ARGV == 1 + or die "USAGE:\t$0 [--ext extension] --pack {dir} > file\n" . + "\t$0 [--ext extension] --unpack {dir} < file\n"; + +pack_dump($ARGV[0], $ext) if $pack; +unpack_dump($ARGV[0], $ext) if $unpack; diff --git a/needed_space_in_mb b/needed_space_in_mb new file mode 100644 index 00000000..c18cf780 --- /dev/null +++ b/needed_space_in_mb @@ -0,0 +1 @@ +6144 diff --git a/old-packages.conf b/old-packages.conf new file mode 100644 index 00000000..81fc8dc5 --- /dev/null +++ b/old-packages.conf @@ -0,0 +1,36 @@ +# Defines which package names to include in the Provides and +# Obsoletes tags of spec files. +# +# When generating Provides, `p' is defined. When generating +# Obsoletes, `o' is defined. +# +# +ARCH: include only for this architecture. +# -!symbol: exclude unless symbol is also defined. +# +# Guards are always evaluated from left to right; the last +# guard that matches determines whether a line is included +# or not. +# +# For testing this file, run scripts/old-config.sh. +# + +# i386 ================================================================= ++i386 -!default smp kernel-smp + ++i386 -!pae kernel-bigsmp + +# x86_64 =============================================================== ++x86_64 -!default smp kernel-smp + +# ia64 ================================================================= ++ia64 -!default kernel-sn2 + +# ppc/ppc64 ============================================================ + ++ppc -!ppc64 kernel-pmac64 kernel-pseries64 kernel-iseries64 ++ppc64 -vanilla kernel-kdump + +# s390/s390x =========================================================== ++s390 -!s390 kernel-32bit + ++s390x -!s390x kernel-64bit diff --git a/package-descriptions b/package-descriptions new file mode 100644 index 00000000..5138f2ef --- /dev/null +++ b/package-descriptions @@ -0,0 +1,123 @@ +# Descriptions of the binary kernel packages. The format is +# +# === === +# Summary (single line) +# +# Long description (multiple +# lines) +# +# Descriptions of the -base and -extra subpackages are derived from the +# main descriptions. + +=== kernel-debug === +A Debug Version of the Kernel + +This kernel has several debug facilities enabled that hurt performance. +Only use this kernel when investigating problems. + +=== kernel-default === +The Standard Kernel + +The standard kernel for both uniprocessor and multiprocessor systems. + +=== kernel-desktop === +Kernel optimized for the desktop + +This kernel is optimized for the desktop. It is configured for lower latency +and has many of the features that aren't usually used on desktop machines +disabled. + +%ifarch %ix86 +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. +%endif + +=== kernel-kdump === +kernel for kdump + +This kernel is intended for kdump. It can not be booted with a normal +bootloader, the kexec tool has to be used to load it. Once the system +crashes, the loaded kernel will be started to grab debug info from the +crashed kernel. + +=== kernel-net === +Minimal kernel with disk and net support + +This kernel carries only networking and disk drivers to fit into the +standard Sun OpenBoot download buffer, and is intended for the +initial install and rescue mode only. + +=== kernel-pae === +Kernel with PAE Support + +This kernel supports up to 64GB of main memory. It requires Physical +Addressing Extensions (PAE), which were introduced with the Pentium Pro +processor. + +PAE is not only more physical address space but also important for the +"no execute" feature which disables execution of code that is marked as +non-executable. Therefore, the PAE kernel should be used on any systems +that support it, regardless of the amount of main memory. + +=== kernel-ppc64 === +Kernel for ppc64 Systems + +This package contains the kernel for: + +IBM pSeries 64bit machines IBM iSeries 64bit machines Apple G5 machines +Sony Playstation 3 + +The boot file is /boot/vmlinux. + +The home page of the ppc64 project is http://www.penguinppc.org/ + +=== kernel-ps3 === +kernel for ps3 bootloader + +This package contains the kernel for the PS3 bootloader. PS3 systems +only have 4MB of flash memory for the bootloader, so this kernel needs +to be as small as possible and is _not_ meant to be installed in the +final system. + +=== kernel-s390 === +The Standard Kernel + +The standard kernel. + +=== kernel-trace === +The Standard Kernel with Tracing Features + +This kernel has different tracing features enabled (e.g. utrace, ftrace). + +=== kernel-vanilla === +The Standard Kernel - without any SUSE patches + +The standard kernel - without any SUSE patches + +=== kernel-xen === +The Xen Kernel + +The Linux kernel for Xen paravirtualization. + +This kernel can be used both as the domain0 ("xen0") and as an +unprivileged ("xenU") kernel. + +=== kernel-ec2 === +The Amazon EC2 Xen Kernel + +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.addon.tar.bz2 b/patches.addon.tar.bz2 new file mode 100644 index 00000000..b6605285 --- /dev/null +++ b/patches.addon.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40cf2e5bb426f03e8b22d891ab32ee3ed9a52de14a38ea09b826cf15ad00fb5 +size 129 diff --git a/patches.apparmor.tar.bz2 b/patches.apparmor.tar.bz2 new file mode 100644 index 00000000..4579021d --- /dev/null +++ b/patches.apparmor.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e983af76e408802b165419548b17ed95e8d7b5765022505f9e8665ee3bfbbae2 +size 8006 diff --git a/patches.arch.tar.bz2 b/patches.arch.tar.bz2 new file mode 100644 index 00000000..c0d13200 --- /dev/null +++ b/patches.arch.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebdb967856ac0c240facb7e8c715ce48dd7d11768d7074e0ba66413317f0e02 +size 73885 diff --git a/patches.drivers.tar.bz2 b/patches.drivers.tar.bz2 new file mode 100644 index 00000000..77d2d764 --- /dev/null +++ b/patches.drivers.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6e0520039a0a8c9132e519f5c4870dfdfb76b7b101f1b4645fccdca4f0041f +size 8125 diff --git a/patches.fixes.tar.bz2 b/patches.fixes.tar.bz2 new file mode 100644 index 00000000..87537fcb --- /dev/null +++ b/patches.fixes.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e39c181a85b824637f0a98221735145247405f7823c3982ec8de6210e67e10a +size 22095 diff --git a/patches.kabi.tar.bz2 b/patches.kabi.tar.bz2 new file mode 100644 index 00000000..862b5696 --- /dev/null +++ b/patches.kabi.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f17122f387e72f1e0cb4acb99148e8363b2e0d5aeeef4543b5750be0e0f290e +size 129 diff --git a/patches.kernel.org.tar.bz2 b/patches.kernel.org.tar.bz2 new file mode 100644 index 00000000..d24bdeb8 --- /dev/null +++ b/patches.kernel.org.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dde5510f9ad1aef9c1f1d3b2a8099a006fe55fdab5ebcf2c141624b999d057e +size 136 diff --git a/patches.rpmify.tar.bz2 b/patches.rpmify.tar.bz2 new file mode 100644 index 00000000..021e6227 --- /dev/null +++ b/patches.rpmify.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e86f169745ea6c3ff4443990499f338833d5c32346e99a3ad0fec9f735a0dfa +size 4336 diff --git a/patches.rt.tar.bz2 b/patches.rt.tar.bz2 new file mode 100644 index 00000000..ed5ae258 --- /dev/null +++ b/patches.rt.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5f1b075a51886cf01e54334bddd9c8a8aa9494e87dcdf6f9a19a618e3594f4 +size 127 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 new file mode 100644 index 00000000..8cfb3fe1 --- /dev/null +++ b/patches.suse.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:320895a49a085e5abd93be597461e1977f5fd0bda3ce43bd1ccb2c39d042ebbc +size 182402 diff --git a/patches.trace.tar.bz2 b/patches.trace.tar.bz2 new file mode 100644 index 00000000..6c8e263e --- /dev/null +++ b/patches.trace.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd54649991cae30e0821c52287c3b16425206921d2cb1835feb6918e73855563 +size 131 diff --git a/patches.xen.tar.bz2 b/patches.xen.tar.bz2 new file mode 100644 index 00000000..4c0eb6ee --- /dev/null +++ b/patches.xen.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f95b0875e23b1efc4e33deb9f13a31f615cdd4aab12e6599fecad7ddd6ea63d +size 2039442 diff --git a/post.sh b/post.sh new file mode 100644 index 00000000..8850a76c --- /dev/null +++ b/post.sh @@ -0,0 +1,100 @@ +# Flag to trigger /etc/init.d/purge-kernels on next reboot (fate#312018) +touch /boot/do_purge_kernels + +# It must be possible to install different kernel.rpm packages in parallel. +# But in this post install script, the /boot/vmlinux symlink is replaced. +# On powerpc, the different kernels are for different board/firmware types +# They are not compatible. +wrong_boardtype() { + echo "This kernel-@FLAVOR@.@RPM_TARGET_CPU@.rpm is for $1, it will not boot on this system." + echo "The /boot/vmlinux symlink will not be created or updated." + exit 0 +} +if [ -f /proc/cpuinfo ]; then + case "@FLAVOR@-@RPM_TARGET_CPU@" in + vanilla-ppc64|default-ppc64|ps3-ppc64|ppc64-ppc64|kdump-ppc64|ps3-ppc|ppc64-ppc|kdump-ppc) + if [ -d /proc/iSeries -o ! -d /proc/ppc64 ]; then + wrong_boardtype "OpenFirmware based 64bit machines" + fi + ;; + vanilla-ppc|default-ppc) + if [ -d /proc/ppc64 -o -d /proc/iSeries ]; then + wrong_boardtype "32bit systems" + fi + ;; + *) + ;; + esac +fi + +suffix= +case @FLAVOR@ in + kdump|ps3|xen*|ec2|vanilla) + suffix=-@FLAVOR@ + ;; +esac +for x in /boot/@IMAGE@ /boot/initrd; do + rm -f $x$suffix + ln -s ${x##*/}-@KERNELRELEASE@-@FLAVOR@ $x$suffix +done + +# Add symlinks of compatible modules to /lib/modules/$krel/weak-updates/, +# run depmod and mkinitrd +wm2=/usr/lib/module-init-tools/weak-modules2 +if [ -x $wm2 ]; then + if [ @BASE_PACKAGE@ = 1 ]; then + /bin/bash -${-/e/} $wm2 --add-kernel @KERNELRELEASE@-@FLAVOR@ + else + nvr=@SUBPACKAGE@-@RPM_VERSION_RELEASE@ + rpm -ql $nvr | /bin/bash -${-/e/} $wm2 --add-kernel-modules @KERNELRELEASE@-@FLAVOR@ + fi +else + echo "$wm does not exist, please run depmod and mkinitrd manually" >&2 +fi + +message_install_bl () { + echo "You may need to setup and install the boot loader using the" + echo "available bootloader for your platform (e.g. grub, lilo, zipl, ...)." +} + +run_bootloader () { + if [ -f /etc/sysconfig/bootloader ] && + [ -f /boot/grub/menu.lst -o \ + -f /etc/lilo.conf -o \ + -f /etc/elilo.conf -o \ + -f /etc/zipl.conf ] + then + return 0 + else + return 1 + fi +} + +# exit out early for Moblin as we don't want to touch the bootloader menu +if [ -f /etc/SuSE-moblin-release ] ; then + exit 0 +fi + +if [ -f /etc/fstab -a ! -e /.buildenv ] ; then + # only run the bootloader if the usual bootloader configuration + # files are there -- this is different on every architecture + initrd=initrd-@KERNELRELEASE@-@FLAVOR@ + if [ -e /boot/$initrd -o ! -e /lib/modules/@KERNELRELEASE@-@FLAVOR@ ] && \ + run_bootloader ; then + [ -e /boot/$initrd ] || initrd= + if [ -x /usr/lib/bootloader/bootloader_entry ]; then + /usr/lib/bootloader/bootloader_entry \ + add \ + @FLAVOR@ \ + @KERNELRELEASE@-@FLAVOR@ \ + @IMAGE@-@KERNELRELEASE@-@FLAVOR@ \ + $initrd + else + message_install_bl + fi + fi +else + message_install_bl +fi + +# vim: set sts=4 sw=4 ts=8 noet: diff --git a/postun.sh b/postun.sh new file mode 100644 index 00000000..e2dddc27 --- /dev/null +++ b/postun.sh @@ -0,0 +1,44 @@ +# If a kernel package is removed before the next reboot, we assume that the +# multiversion variable in /etc/zypp/zypp.conf is not configured and we delete +# the flag again (fate#312018) +rm -f /boot/do_purge_kernels + +wm2=/usr/lib/module-init-tools/weak-modules2 +nvr=@SUBPACKAGE@-@RPM_VERSION_RELEASE@ + +if [ -e /boot/System.map-@KERNELRELEASE@-@FLAVOR@ ]; then + # the same package was reinstalled or just rebuilt, otherwise the files + # would have been deleted by now + # do not remove anything in this case (bnc#533766) + rm -f /var/run/rpm-$nvr-modules + exit 0 +fi + +if [ @BASE_PACKAGE@ = 0 ]; then + if [ -x $wm2 ]; then + /bin/bash -${-/e/} $wm2 --remove-kernel-modules @KERNELRELEASE@-@FLAVOR@ < /var/run/rpm-$nvr-modules + fi + rm -f /var/run/rpm-$nvr-modules + exit 0 +fi +# Remove symlinks from /lib/modules/$krel/weak-updates/. +if [ -x $wm2 ]; then + /bin/bash -${-/e/} $wm2 --remove-kernel @KERNELRELEASE@-@FLAVOR@ +fi + +# exit out early for Moblin as we don't want to touch the bootloader menu +if [ -f /etc/SuSE-moblin-release ] ; then + exit 0 +fi + +# remove fstab check once perl-Bootloader can cope with it +if [ -f /etc/fstab ]; then + if [ -x /usr/lib/bootloader/bootloader_entry ]; then + /usr/lib/bootloader/bootloader_entry \ + remove \ + @FLAVOR@ \ + @KERNELRELEASE@-@FLAVOR@ \ + @IMAGE@-@KERNELRELEASE@-@FLAVOR@ \ + initrd-@KERNELRELEASE@-@FLAVOR@ + fi +fi diff --git a/pre.sh b/pre.sh new file mode 100644 index 00000000..044c00f0 --- /dev/null +++ b/pre.sh @@ -0,0 +1,21 @@ +# see bug #259303 +# this script runs when the kernel gets updated with YaST +# YaST calls rpm always with -U +# -U replaces all packages with the new one +# rpm removes the files from the old packages after the postinstall script ran +# this will double the required space below /boot +# remove the files from the old packages to make room for the new initrd +# rpm may complain about low disk space if /boot/vmlinux does not fit +if [ @BASE_PACKAGE@ = 1 -a "$YAST_IS_RUNNING" != "" ]; then + mydf="$( POSIXLY_CORRECT=1 df -P /boot/ | awk '/^(\/|-[[:blank:]])/{ print $4}' )" + if test "$mydf" != "" ; then + echo "Free diskspace below /boot: $mydf blocks" + # echo "512 byte blocks: $(( 2 * 1024 * 20 ))" + if test "$mydf" -lt "40960" ; then + echo "make room for new kernel '@FLAVOR@' because there are less than 20MB available." + # disabled because it breaks patch rpms + #rm -fv /boot/@IMAGE@-*-@FLAVOR@ + rm -fv /boot/initrd-*-@FLAVOR@ + fi + fi +fi diff --git a/preun.sh b/preun.sh new file mode 100644 index 00000000..a1240a87 --- /dev/null +++ b/preun.sh @@ -0,0 +1,4 @@ +if [ @BASE_PACKAGE@ = 0 ]; then + nvr=@SUBPACKAGE@-@RPM_VERSION_RELEASE@ + rpm -ql $nvr | grep '\.ko$' > /var/run/rpm-$nvr-modules +fi diff --git a/series.conf b/series.conf new file mode 100644 index 00000000..11129dc2 --- /dev/null +++ b/series.conf @@ -0,0 +1,789 @@ +# Kernel patches configuration file +# vim: set ts=8 sw=8 noet: +# +# There are three kinds of rules (see guards.1 for details): +# +symbol include this patch if symbol is defined; otherwise exclude. +# -symbol exclude this patch if symbol is defined; otherwise include. +# - exclude this patch. +# +# Using symbols means that an entirely different source tree will be +# generated depending on which symbols are defined. This used to be +# a good thing when arch-specific patches contained conflicts with other +# patches, but we now have a policy that patches must build everywhere. +# The result is a unified source tree that allows us to do neat things +# like ship kernel module packages. Creating a divergent tree breaks +# these # so you'd better have an extraordinary reason for using them. +# For example, the openSUSE 10.3 kernel uses them for segregating the +# -rt patches until they can be integrated completely, and these are +# only applied at the very end of the series. +# +# The most common use in recent kernels is to disable a patch with a +# username as the symbol to indicate responsbility. Another use is +# to check in a patch for testing, but have it disabled in all but your +# own build environment. + + ######################################################## + # latest standard kernel patches + # DO NOT MODIFY THEM! + # Send separate patches upstream if you find a problem... + ######################################################## + + ######################################################## + # Build fixes that apply to the vanilla kernel too. + # Patches in patches.rpmify are applied to both -vanilla + # and patched flavors. + ######################################################## + patches.rpmify/apm-honor-config_apm_cpu_idle-n + patches.rpmify/nouveau-make-vga_switcheroo-code-depend-on-vga_switcheroo + patches.rpmify/pti-depends-on-x86-pci + + ######################################################## + # kABI consistency patches + ######################################################## + + ######################################################## + # + # packaging-specific patches (tweaks for autobuild, + # CONFIG_SUSE_KERNEL, config/version tracking and other + # build stuff like that ...). + # + # Note that every patch in the patches.rpmify directory + # will be included in the vanilla package. + ######################################################## + patches.rpmify/firmware-path + + patches.rpmify/rpm-kernel-config + patches.rpmify/split-package + patches.rpmify/cloneconfig.diff + + ######################################################## + # kbuild/module infrastructure fixes + ######################################################## + patches.suse/supported-flag + patches.suse/supported-flag-enterprise + patches.suse/genksyms-add-override-flag.diff + patches.suse/kconfig-automate-kernel-desktop + + ######################################################## + # Simple export additions/removals + ######################################################## + + ######################################################## + # Bug workarounds for binutils + ######################################################## + + ######################################################## + # Scheduler / Core + ######################################################## + patches.suse/setuid-dumpable-wrongdir + + ######################################################## + # Architecture-specific patches. These used to be all + # at the end of series.conf, but since we don't do + # conditional builds anymore, there's no point. + ######################################################## + + + ######################################################## + # ia64 + ######################################################## + + ######################################################## + # i386 + ######################################################## + + + # amd64 | x86-64 | x86_64 + # 'Intel(r) Extended Memory 64 Technology' | 'Intel(r) EM64T' + # x64 + # Intel 64 + # "the architecture with too many names" + # TAWTMN + + ######################################################## + # x86_64/i386 biarch + ######################################################## + patches.arch/x86_64-hpet-64bit-timer.patch + ++needs_update patches.arch/kvm-split-paravirt-ops-by-functionality ++needs_update patches.arch/kvm-only-export-selected-pv-ops-feature-structs ++needs_update patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature ++needs_update patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic + ++trenn patches.arch/kill-__stop_machine.patch ++trenn patches.arch/reorganize_stop_cpus.patch ++trenn patches.arch/implement_stop_machine_from_offline_cpu.patch ++trenn patches.arch/use_stop_machine_for_mtrr_rendezvous.patch + + ######################################################## + # x86 MCE/MCA (Machine Check Error/Architecture) extensions + ######################################################## + + + ######################################################## + # x86_64/4096CPUS - from SGI + ######################################################## + patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch + + ######################################################## + # x86 UV patches from SGI + ######################################################## + + ######################################################## + # x86_64/i386 depending on the UV patchset + ######################################################## + + ######################################################## + # powerpc/generic + ######################################################## + patches.suse/led_classdev.sysfs-name.patch + patches.suse/radeon-monitor-jsxx-quirk.patch + + patches.suse/8250-sysrq-ctrl_o.patch ++needs_update? patches.suse/ppc-no-LDFLAGS_MODULE.patch + patches.arch/ppc-pegasos-console-autodetection.patch + patches.suse/ppc-powerbook-usb-fn-key-default.patch + patches.drivers/ppc64-adb + patches.suse/suse-ppc64-branding + patches.arch/ppc64-xmon-dmesg-printing.patch + patches.arch/ppc-prom-nodisplay.patch + patches.fixes/ptrace-getsiginfo + patches.arch/ppc-kvm-fix-big-section.patch + patches.arch/ppc-kvm-fix-cbe.patch + + ######################################################## + # PS3 + ######################################################## + + ######################################################## + # S/390 + ######################################################## + patches.arch/s390-message-catalog.diff + patches.arch/s390-message-catalog-fix.diff + patches.arch/s390-message-catalog-perl-fix.diff + patches.arch/kmsg-fix-parameter-limitations + + patches.suse/s390-Kerntypes.diff + + ######################################################## + # VM/FS patches + ######################################################## + patches.fixes/oom-warning + patches.fixes/grab-swap-token-oops + + patches.fixes/remount-no-shrink-dcache + + patches.suse/readahead-request-tunables.patch + patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops + patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch + + ######################################################## + # IPC patches + ######################################################## + + ######################################################## + # nfsacl protocol (agruen) + ######################################################## + + ######################################################## + # misc small fixes + ######################################################## + patches.suse/connector-read-mostly + patches.suse/kbd-ignore-gfx.patch + + ######################################################## + # + # ACPI patches + # + ######################################################## + # Check resource conflicts between hwmon and ACPI OpRegs + patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch + + patches.arch/acpi_thermal_passive_blacklist.patch + + patches.arch/acpi_fix_fadt_32_bit_zero_length.patch + + # Adjust this patch for every new product (at least Enterprise + # level) to provide OEMs a safety break so that they can add + # for example SLE11 specific BIOS updates (if there is no other + # way to safely solve an ACPI issue). ++trenn patches.suse/acpi_osi_sle11_ident.patch + 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 + + # Queued for 2.6.36 -> just revert after some time + patches.fixes/acpi_ec_sys_access_user_space_with_get_user.patch + + patches.drivers/apei_allow_drivers_access_nvs_ram.patch + + patches.arch/acpica_introduce_acpi_os_phys_table_override_function.patch + patches.arch/acpica_fix_wrongly_mapped_acpi_table_header_when_overriding_via_initrd.patch + patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch + + ######################################################## + # CPUFREQ + ######################################################## + + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch + +## cpuidle perf events cleanups and related + patches.arch/perf_timechart_fix_zero_timestamps.patch + + patches.fixes/intel_idle_lapic_param.patch + patches.fixes/intel_idle_add_flush_tlb_param.patch + + ######################################################## + # AGP, graphics related stuff + ######################################################## + + ######################################################## + # Suse specific stuff + ######################################################## + + ######################################################## + # Networking, IPv6 + ######################################################## + patches.fixes/bridge-module-get-put.patch + + ######################################################## + # NFS + ######################################################## + ++needs_update37 patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch + patches.fixes/nfs-adaptive-readdir-plus + + ######################################################## + # lockd + statd + ######################################################## + + ######################################################## + # cifs patches + ######################################################## + + ######################################################## + # ext2/ext3 + ######################################################## +# patches.suse/ext2-fsync-err + + ######################################################## + # ext4 + ######################################################## + + ######################################################## + # btrfs + ######################################################## + + ######################################################## + # Reiserfs Patches + ######################################################## + patches.fixes/reiserfs-force-inode-evictions-before-umount-to-avoid-crash ++needs_updating-39 patches.suse/reiser4-dependencies + + ######################################################## + # dlm + ######################################################## + + ######################################################## + # ocfs2 + ######################################################## + + ######################################################## + # gfs2 + ######################################################## + + ######################################################## + # xfs + ######################################################## + + ######################################################## + # other filesystem stuff: richacls + ######################################################## + patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch + patches.suse/0002-vfs-Add-generic-IS_ACL-test-for-acl-support.patch + patches.suse/0003-vfs-Add-IS_RICHACL-test-for-richacl-support.patch + patches.suse/0004-richacl-In-memory-representation-and-helper-function.patch + patches.suse/0005-richacl-Permission-mapping-functions.patch + patches.suse/0006-richacl-Compute-maximum-file-masks-from-an-acl.patch + patches.suse/0007-richacl-Update-the-file-masks-in-chmod.patch + patches.suse/0008-richacl-Permission-check-algorithm.patch + patches.suse/0009-richacl-Helper-functions-for-implementing-richacl-in.patch + patches.suse/0010-richacl-Create-time-inheritance.patch + patches.suse/0011-richacl-Check-if-an-acl-is-equivalent-to-a-file-mode.patch + patches.suse/0012-richacl-Automatic-Inheritance.patch + patches.suse/0013-richacl-Restrict-access-check-algorithm.patch + patches.suse/0014-richacl-xattr-mapping-functions.patch + patches.suse/0015-ext4-Use-IS_POSIXACL-to-check-for-POSIX-ACL-support.patch + patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch + + ######################################################## + # other filesystem stuff + ######################################################## + patches.fixes/hfs-avoid-crash-in-hfs_bnode_create + + ######################################################## + # Swap-over-NFS + ######################################################## + + ######################################################## + # Netfilter + ######################################################## + + patches.suse/netfilter-ip_conntrack_slp.patch + patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack + + ######################################################## + # + # Device drivers + # + ######################################################## + + ######################################################## + # Storage + ######################################################## + + # Block layer fixes + patches.fixes/scsi-inquiry-too-short-ratelimit + patches.suse/scsi-netlink-ml + + patches.fixes/scsi-retry-alua-transition-in-progress + + patches.fixes/scsi-dh-queuedata-accessors + patches.fixes/scsi-evaluate-tpgs-setting + patches.suse/scsi-dh-implement-match-callback + patches.fixes/scsi-dh-alua-always-update-tpgs-status + patches.fixes/scsi-dh-check-for-sdev-state-in-store_dh_state + + patches.fixes/scsi-check-host-lookup-failure + patches.drivers/megaraid-mbox-fix-SG_IO + + # Remaining SCSI patches (garloff) + patches.suse/scsi-error-test-unit-ready-timeout + patches.fixes/scsi-scan-blist-update + + patches.fixes/scsi-ibmvscsi-show-config.patch + # bnc#362850 + patches.fixes/sd_liberal_28_sense_invalid.diff + + patches.fixes/scsi-ibmvscsi-module_alias.patch + + ######################################################## + # DRM/Video + ######################################################## + + ######################################################## + # video4linux + ######################################################## + + ######################################################## + # Network + ######################################################## + patches.fixes/tulip-quad-NIC-ifdown + patches.drivers/ehea-modinfo.patch + + ######################################################## + # Wireless Networking + ######################################################## + patches.suse/b43-missing-firmware-info.patch + + ######################################################## + # ISDN + ######################################################## + patches.fixes/misdn-add-support-for-group-membership-check + + ######################################################## + # iSCSI + ######################################################## + + ######################################################## + # PCI and PCI hotplug + ######################################################## + + ######################################################## + # sysfs / driver core + ######################################################## + + ######################################################## + # USB + ######################################################## + + ######################################################## + # I2C + ######################################################## + + ######################################################## + # Input & Console + ######################################################## + patches.suse/SUSE-bootsplash + patches.drivers/elousb.patch + patches.suse/elousb-2.6.35-api-changes + patches.fixes/input-add-acer-aspire-5710-to-nomux.patch + patches.drivers/input-Add-LED-support-to-Synaptics-device + + ########################################################## + # Sound + ########################################################## + + ######################################################## + # Char / serial + ######################################################## + + ######################################################## + # Other driver fixes + ######################################################## + # http://git.kernel.org/?p=linux/kernel/git/gregkh/staging-2.6.git;a=history;f=drivers/staging/hv;hb=refs/heads/staging-next + patches.suse/staging-hv-staging-next-20110825-0001-Staging-hv-vmbus-Don-t-wait-indefinitely-for-IRQ.patch + patches.suse/staging-hv-staging-next-20110825-0002-Staging-hv-tools-Fix-a-checkpatch-warning-in-hv_k.patch + patches.suse/staging-hv-staging-next-20110825-0003-Staging-hv-vmbus-Fix-checkpatch-warnings.patch + patches.suse/staging-hv-staging-next-20110825-0004-Staging-hv-util-kvp-Fix-the-reported-OSVersion-s.patch + patches.suse/staging-hv-staging-next-20110825-0005-Staging-hv-util-kvp-Cleanup-kvp_get_domain_name.patch + patches.suse/staging-hv-staging-next-20110825-0006-Staging-hv-Fix-macros-tab-errors-and-warning-in-d.patch + patches.suse/staging-hv-staging-next-20110825-0007-Staging-hv-vmbus-VMBUS-is-an-ACPI-enumerated-devi.patch + patches.suse/staging-hv-staging-next-20110825-0008-Staging-hv-Replace-struct-hv_guid-with-the-uuid-ty.patch + patches.suse/staging-hv-staging-next-20110825-0009-Staging-hv-vmbus-Introduce-vmbus-ID-space-in-stru.patch + patches.suse/staging-hv-staging-next-20110825-0010-Staging-hv-blkvsc-Use-the-newly-introduced-vmbus.patch + patches.suse/staging-hv-staging-next-20110825-0011-Staging-hv-storvsc-Use-the-newly-introduced-vmbus.patch + patches.suse/staging-hv-staging-next-20110825-0012-Staging-hv-netvsc-Use-the-newly-introduced-vmbus.patch + patches.suse/staging-hv-staging-next-20110825-0013-Staging-hv-mousevsc-Use-the-newly-introduced-vmbu.patch + patches.suse/staging-hv-staging-next-20110825-0014-Staging-hv-util-Make-hv_utils-a-vmbus-device-driv.patch + patches.suse/staging-hv-staging-next-20110825-0015-Staging-hv-create-VMBUS_DEVICE-macro-and-use-it.patch + patches.suse/staging-hv-staging-next-20110825-0016-Staging-hv-vmbus-Cleanup-vmbus_match.patch + patches.suse/staging-hv-staging-next-20110825-0017-Staging-hv-vmbus-Cleanup-vmbus_uevent-code.patch + patches.suse/staging-hv-staging-next-20110825-0018-Staging-hv-vmbus-Support-the-notion-of-id-tables.patch + patches.suse/staging-hv-staging-next-20110825-0019-Staging-hv-vmbus-Get-rid-of-an-unnecessary-includ.patch + patches.suse/staging-hv-staging-next-20110825-0020-Staging-hv-storvsc-Get-rid-of-the-DMI-signature.patch + patches.suse/staging-hv-staging-next-20110825-0021-Staging-hv-netvsc-Get-rid-of-the-PCI-signature.patch + patches.suse/staging-hv-staging-next-20110825-0022-Staging-hv-netvsc-Get-rid-of-the-DMI-signature-in.patch + patches.suse/staging-hv-staging-next-20110825-0023-Staging-hv-util-Get-rid-of-the-DMI-signature-in-h.patch + patches.suse/staging-hv-staging-next-20110825-0024-Staging-hv-util-Get-rid-of-the-PCI-signature-in-h.patch + patches.suse/staging-hv-staging-next-20110825-0025-Staging-hv-fix-up-driver-registering-mess.patch + patches.suse/staging-hv-staging-next-20110825-0026-Staging-hv-vmbus-Get-rid-of-some-unnecessary-comm.patch + patches.suse/staging-hv-staging-next-20110825-0027-Staging-hv-vmbus-Cleanup-unnecessary-comments-in.patch + patches.suse/staging-hv-staging-next-20110825-0028-Staging-hv-vmbus-Cleanup-error-handling-in-hv_ini.patch + patches.suse/staging-hv-staging-next-20110825-0029-Staging-hv-vmbus-Get-rid-of-unnecessay-comments-i.patch + patches.suse/staging-hv-staging-next-20110825-0030-Staging-hv-vmbus-Get-rid-of-the-function-dump_gpa.patch + patches.suse/staging-hv-staging-next-20110825-0031-Staging-hv-vmbus-Get-rid-of-the-function-dump_gpa.patch + patches.suse/staging-hv-staging-next-20110825-0032-Staging-hv-vmbus-Rename-openMsg-to-open_msg-in-ch.patch + patches.suse/staging-hv-staging-next-20110825-0033-Staging-hv-vmbus-Get-rid-of-unnecessary-comments.patch + patches.suse/staging-hv-staging-next-20110825-0034-Staging-hv-vmbus-Change-the-variable-name-openInf.patch + patches.suse/staging-hv-staging-next-20110825-0035-Staging-hv-vmbus-Cleanup-error-values-in-ringbuff.patch + patches.suse/staging-hv-staging-next-20110825-0036-Staging-hv-vmbus-Cleanup-the-error-return-value-i.patch + patches.suse/staging-hv-staging-next-20110825-0037-Staging-hv-netvsc-Get-rid-of-an-unnecessary-print.patch + patches.suse/staging-hv-staging-next-20110825-0038-Staging-hv-vmbus-Retry-vmbus_post_msg-before-gi.patch + patches.suse/staging-hv-staging-next-20110825-0039-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch + patches.suse/staging-hv-staging-next-20110825-0040-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch + patches.suse/staging-hv-staging-next-20110825-0041-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch + patches.suse/staging-hv-staging-next-20110825-0042-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch + patches.suse/staging-hv-staging-next-20110825-0043-Storage-hv-storvsc-Get-rid-of-some-unnecessary-DP.patch + patches.suse/staging-hv-staging-next-20110825-0044-Staging-hv-storvsc-Fix-cleanup-some-dated-comment.patch + patches.suse/staging-hv-staging-next-20110825-0045-Staging-hv-storvsc-Cleanup-returned-error-code-in.patch + patches.suse/staging-hv-staging-next-20110825-0046-Staging-hv-storvsc-Cleanup-error-code-returned-in.patch + patches.suse/staging-hv-staging-next-20110825-0047-Staging-hv-storvsc-Cleanup-returned-error-code-in.patch + patches.suse/staging-hv-staging-next-20110825-0048-Staging-hv-netvsc-Cleanup-the-returned-error-code.patch + patches.suse/staging-hv-staging-next-20110825-0049-Staging-hv-netvsc-Cleanup-error-return-codes-in-n.patch + patches.suse/staging-hv-staging-next-20110825-0050-Staging-hv-netvsc-Cleanup-error-return-values-in.patch + patches.suse/staging-hv-staging-next-20110825-0051-Staging-hv-netvsc-Cleanup-error-returns-in-netvsc.patch + patches.suse/staging-hv-staging-next-20110825-0052-Staging-hv-netvsc-Cleanup-error-return-values-in.patch + patches.suse/staging-hv-staging-next-20110825-0053-Staging-hv-netvsc-Cleanup-error-return-codes-in-n.patch + patches.suse/staging-hv-staging-next-20110825-0054-Staging-hv-netvsc-Cleanup-error-codes-in-rndis_fi.patch + patches.suse/staging-hv-staging-next-20110825-0055-Staging-hv-netvsc-Cleanup-error-code-in-rndis_fil.patch + patches.suse/staging-hv-staging-next-20110825-0056-Staging-hv-netvsc-Cleanup-error-return-values-in.patch + patches.suse/staging-hv-staging-next-20110825-0057-Staging-hv-netvsc-Cleanup-error-returns-in-rndis_.patch + patches.suse/staging-hv-staging-next-20110825-0058-Staging-hv-netvsc-Cleanup-error-code-in-rndis_fil.patch + patches.suse/staging-hv-staging-next-20110825-0059-Staging-hv-mouse-Change-the-jump-label-Cleanup-to.patch + patches.suse/staging-hv-staging-next-20110825-0060-Staging-hv-netvsc-Change-the-jump-label-Cleanup-t.patch + patches.suse/staging-hv-staging-next-20110825-0061-Staging-hv-netvsc-Change-the-jump-label-Exit-to-e.patch + patches.suse/staging-hv-staging-next-20110825-0062-Staging-hv-mouse-Get-rid-of-the-unused-PCI-signat.patch + patches.suse/staging-hv-staging-next-20110825-0063-Staging-hv-hv_mouse-remove-deviceinfo_callback-fu.patch + patches.suse/staging-hv-staging-next-20110825-0064-Staging-hv-hv_mouse-remove-inputreport_callback-f.patch + patches.suse/staging-hv-staging-next-20110825-0065-Staging-hv-hv_mouse-remove-a-forward-declaration.patch + patches.suse/staging-hv-staging-next-20110825-0066-Staging-hv-hv_mouse-fix-up-remove-function.patch + # module support patches outside of drivers/staging/hv + patches.suse/staging-hv-staging-next-20110825-0562-Staging-hv-Add-struct-hv_vmbus_device_id-to-mod_de.patch + patches.suse/staging-hv-staging-next-20110825-0563-Staging-hv-add-driver_data-to-hv_vmbus_device_id.patch + patches.suse/staging-hv-staging-next-20110825-0568-Staging-hv-Add-code-to-parse-struct-hv_vmbus_devic.patch + patches.suse/staging-hv-staging-next-20110825-0570-Staging-hv-file2alias-fix-up-alias-creation-logic.patch + + patches.suse/staging-hv-staging-next-20110829-0303-Staging-hv-storvsc-Inline-free_stor_device.patch + patches.suse/staging-hv-staging-next-20110829-0304-Staging-hv-storvsc-Do-not-aquire-an-unnecessary-r.patch + patches.suse/staging-hv-staging-next-20110829-0305-Staging-hv-storvsc-Rename-must_get_stor_device.patch + patches.suse/staging-hv-staging-next-20110829-0306-Staging-hv-storvsc-Rename-get_stor_device.patch + patches.suse/staging-hv-staging-next-20110829-0307-Staging-hv-storvsc-Cleanup-alloc_stor_device.patch + patches.suse/staging-hv-staging-next-20110829-0308-Staging-hv-storvsc-Introduce-state-to-manage-the.patch + patches.suse/staging-hv-staging-next-20110829-0309-Staging-hv-storvsc-Prevent-outgoing-traffic-when.patch + patches.suse/staging-hv-staging-next-20110829-0310-Staging-hv-storvsc-Get-rid-of-release_stor_device.patch + patches.suse/staging-hv-staging-next-20110829-0311-Staging-hv-storvsc-Get-rid-of-final_release_stor_.patch + patches.suse/staging-hv-staging-next-20110829-0312-Staging-hv-storvsc-Get-rid-of-the-reference-count.patch + patches.suse/staging-hv-staging-next-20110829-0313-Staging-hv-netvsc-Inline-the-code-for-free_net_de.patch + patches.suse/staging-hv-staging-next-20110829-0314-Staging-hv-netvsc-Cleanup-alloc_net_device.patch + patches.suse/staging-hv-staging-next-20110829-0315-Staging-hv-netvsc-Introduce-state-to-manage-the-l.patch + patches.suse/staging-hv-staging-next-20110829-0316-Staging-hv-netvsc-Prevent-outgoing-traffic-when-n.patch + patches.suse/staging-hv-staging-next-20110829-0317-Staging-hv-netvsc-Get-rid-of-release_outbound_net.patch + patches.suse/staging-hv-staging-next-20110829-0318-Staging-hv-netvsc-Get-rid-of-release_inbound_net_.patch + patches.suse/staging-hv-staging-next-20110829-0319-Staging-hv-netvsc-Get-rid-of-the-refcnt-field-in.patch + patches.suse/staging-hv-staging-next-20110829-0320-Staging-hv-storvsc-Add-code-to-handle-IDE-devices.patch + patches.suse/staging-hv-staging-next-20110829-0321-Staging-hv-storvsc-Handle-IDE-devices-using-the-s.patch + patches.suse/staging-hv-staging-next-20110829-0322-Staging-hv-blkvsc-Get-rid-of-blkvsc_drv.c-as-this.patch + patches.suse/staging-hv-staging-next-20110829-0323-Staging-hv-storvsc-Optimize-bounce-buffer-handlin.patch + patches.suse/staging-hv-staging-next-20110829-0324-Staging-hv-storvsc-Optimize-the-bounce-buffer-han.patch + patches.suse/staging-hv-staging-next-20110829-0325-Staging-hv-storvsc-Include-storvsc.c-in-storvsc_d.patch + patches.suse/staging-hv-staging-next-20110829-0326-Staging-hv-storvsc-Cleanup-storvsc_drv.c-after-ad.patch + patches.suse/staging-hv-staging-next-20110829-0327-Staging-hv-storvsc-Add-the-contents-of-hyperv_sto.patch + patches.suse/staging-hv-staging-next-20110829-0328-Staging-hv-storvsc-Cleanup-storvsc_drv.c-after-ad.patch + patches.suse/staging-hv-staging-next-20110829-0329-Staging-hv-storvsc-Fixup-srb-and-scsi-status-for.patch + patches.suse/staging-hv-staging-next-20110829-0330-Staging-hv-storvsc-Fix-a-typo.patch + patches.suse/staging-hv-staging-next-20110829-0331-Staging-hv-storvsc-In-case-of-scsi-errors-offline.patch + patches.suse/staging-hv-staging-next-20110829-0332-Staging-hv-storvsc-No-need-to-copy-from-bounce-bu.patch + patches.suse/staging-hv-staging-next-20110829-0333-Staging-hv-util-Forcefully-shutdown-when-shutdown.patch + patches.suse/staging-hv-staging-next-20110829-0334-Staging-hv-util-Adjust-guest-time-in-a-process-co.patch + patches.suse/staging-hv-staging-next-20110829-0335-Staging-hv-vmbus-Check-before-invoking-the-channe.patch + patches.suse/staging-hv-staging-next-20110829-0336-Staging-hv-vmbus-Properly-deal-with-de-registerin.patch + patches.suse/staging-hv-staging-next-20110829-0337-Staging-hv-Fix-a-bug-in-vmbus_match.patch + patches.suse/staging-hv-staging-next-20110829-0338-Staging-hv-vmbus-Get-rid-of-vmbus_on_isr-by-inl.patch + patches.suse/staging-hv-staging-next-20110829-0339-Staging-hv-vmbus-Do-not-enable-auto-eoi.patch + patches.suse/staging-hv-staging-next-20110829-0340-Staging-hv-vmbus-Fixup-indentation-in-vmbus_acpi_.patch + patches.suse/staging-hv-staging-next-20110829-0341-Staging-hv-vmbus-Get-rid-of-some-dated-redundant.patch + patches.suse/staging-hv-staging-next-20110829-0342-Staging-hv-vmbus-Get-rid-of-an-unnecessary-check.patch + patches.suse/staging-hv-staging-next-20110829-0343-Staging-hv-vmbus-Fix-a-checkpatch-warning-in-ring.patch + patches.suse/staging-hv-staging-next-20110829-0344-Staging-hv-vmbus-Fix-checkpatch-warnings-in-conne.patch + patches.suse/staging-hv-staging-next-20110829-0345-Staging-hv-mousevsc-Fix-checkpatch-errors-and-war.patch + patches.suse/staging-hv-staging-next-20110829-0346-Staging-hv-netvsc-return-negative-error-codes.patch + + patches.suse/staging-hv-vmbus-modalias-show.patch + patches.suse/staging-hv-pata_piix-ignore-disks.patch + patches.fixes/parport-mutex + + patches.suse/no-partition-scan + + ######################################################## + # Other drivers we have added to the tree + ######################################################## + + ######################################################## + # Suspend/Resume stuff + ######################################################## + + ######################################################## + # device-mapper + ######################################################## + patches.suse/dm-emulate-blkrrpart-ioctl + patches.suse/dm-raid45-26-Nov-2009.patch + patches.suse/dmraid45-dm_dirty_log_create-api-fix + patches.suse/dmraid45-dm_get_device-takes-fewer-arguments + patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md + patches.suse/dm-raid45-api-update-no-barriers + patches.suse/dm-raid45-api-2.6.39 + patches.suse/dm-raid45-api-3.0 + patches.fixes/dm-mpath-reattach-dh + patches.suse/dm-mpath-leastpending-path-update + patches.suse/dm-mpath-accept-failed-paths + patches.suse/dm-mpath-detach-existing-hardware-handler + patches.fixes/dm-table-switch-to-readonly + 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 + patches.suse/mpath-fix + + ######################################################## + # md + ######################################################## + + ########################################################## + # + # Security stuff + # + ########################################################## + + ########################################################## + # Audit + ########################################################## + + ########################################################## + # AppArmor + ########################################################## + patches.apparmor/apparmor-compatibility-patch-for-v5-network-control + patches.apparmor/apparmor-compatibility-patch-for-v5-interface + patches.apparmor/apparmor-allow-dfa-backward-compatibility-with-broken-userspace + + + ######################################################## + # Address space layout randomization + ######################################################## + + ######################################################## + # KDB v4.4 + ######################################################## + + ######################################################## + # Other patches for debugging + ######################################################## + patches.suse/crasher-26.diff + patches.suse/stack-unwind + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops + patches.suse/no-frame-pointer-select + patches.arch/x86_64-unwind-annotations + + ######################################################## + # Kdump + ######################################################## + + ######################################################## + # cgroups + ######################################################## + + ######################################################## + # audit subsystem + ######################################################## + + ######################################################## + # Performance Monitoring, Tracing etc + ######################################################## + patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch + + ######################################################## + # KVM patches + ######################################################## + patches.fixes/kvm-ioapic.patch + patches.fixes/kvm-macos.patch + + ######################################################## + # Staging tree patches + # new drivers that are going upstream + ######################################################## + + ######################################################## + # You'd better have a good reason for adding a patch + # below here. + ######################################################## + +######################################################## +# XEN architecture, version 3 +######################################################## + +# xen patches, from xenbits mercurial repository. +# http://xenbits.xensource.com/ext/linux-2.6-merge.hg +# +# everything named "xen3-auto-*" is auto-generated. +# PLEASE DON'T EDIT THESE PATCHES. Create fixup patches +# on top of them instead. This reduces workload when +# re-basing to a newer xen tree. +# + ### both uml framebuffer and xen need this one. + patches.xen/add-console-use-vt + + # split out patches + patches.xen/kexec-move-segment-code-i386.patch + patches.xen/kexec-move-segment-code-x86_64.patch + patches.xen/frontswap-structure-changes + patches.xen/frontswap-core + patches.xen/frontswap-hooks + patches.xen/frontswap-config + patches.xen/ipv6-no-autoconf + patches.xen/pci-guestdev + patches.xen/pci-reserve + + # 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 + patches.xen/xen3-auto-blktap2-pvops.diff + + # kconfig bits for xen + 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 + + # fixups due to upstream Xen parts + patches.xen/xen3-fixup-xen + + # 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 + patches.xen/xen3-fixup-blktap2-pvops + + # 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 + patches.xen/xen3-patch-2.6.33 + patches.xen/xen3-patch-2.6.34 + patches.xen/xen3-patch-2.6.35 + patches.xen/xen3-patch-2.6.36 + patches.xen/xen3-patch-2.6.37 + patches.xen/xen3-patch-2.6.38 + patches.xen/xen3-patch-2.6.39 + patches.xen/xen3-patch-3.0 + patches.xen/xen3-patch-3.1-rc5 + patches.xen/xen3-patch-3.1-rc6-rc7 + patches.xen/xen3-apei_allow_drivers_access_nvs_ram.patch + patches.xen/xen3-acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch + patches.xen/xen3-stack-unwind + patches.xen/xen3-x86_64-unwind-annotations + + # bugfixes and enhancements + patches.xen/xen-kconfig-compat + patches.xen/xen-sys-suspend + patches.xen/xen-ipi-per-cpu-irq + patches.xen/xen-virq-per-cpu-irq + patches.xen/xen-clockevents + patches.xen/xen-spinlock-poll-early + patches.xen/xen-pcpu-hotplug + patches.xen/xen-mem-hotplug + patches.xen/xen-swiotlb-heuristics + patches.xen/xen-pci-multi-segment + patches.xen/xen-configurable-guest-devices + patches.xen/xen-setup-gsi + patches.xen/xen-kzalloc + patches.xen/xen-sections + patches.xen/xen-unpriv-build + patches.xen/xen-cpufreq-report + patches.xen/xen-balloon-max-target + patches.xen/xen-blkif-protocol-fallback-hack + patches.xen/xen-blkback-cdrom + patches.xen/xen-blktap-modular + patches.xen/xen-blktap-write-barriers + patches.xen/xen-blktap2-configurable-nr-devs + patches.xen/xen-op-packet + patches.xen/xen-blkfront-cdrom + patches.xen/xen-blkfront-hvm-no-cdrom + patches.xen/xen-netback-nr-irqs + patches.xen/xen-netback-notify-multi + patches.xen/xen-netback-generalize + patches.xen/xen-netback-multiple-tasklets + patches.xen/xen-netback-kernel-threads + patches.xen/xen-cxgb3 + patches.xen/xen-dcdbas + patches.xen/xen-floppy + patches.xen/xen-x86-panic-no-reboot + patches.xen/xen-x86-dcr-fallback + patches.xen/xen-x86-no-lapic + patches.xen/xen-x86-pmd-handling + patches.xen/xen-x86-bigmem + patches.xen/xen-x86-exit-mmap + patches.xen/xen-x86-per-cpu-vcpu-info + patches.xen/xen-x86-msr-on-pcpu + patches.xen/xen-x86-EFI + 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 + patches.xen/xen-x86_64-unmapped-initrd diff --git a/source-post.sh b/source-post.sh new file mode 100644 index 00000000..ea9c15e2 --- /dev/null +++ b/source-post.sh @@ -0,0 +1,13 @@ +relink() { + if [ -h "$2" ]; then + local old=$(readlink "$2") + [ "$old" = "$1" ] && return 0 + echo "Changing symlink $2 from $old to $1" + elif [ -e "$2" ]; then + echo "Replacing file $2 with symlink to $1" + fi + rm -f "$2" \ + && ln -s "$1" "$2" +} + +relink linux-@KERNELRELEASE@@SRCVARIANT@ /usr/src/linux@SRCVARIANT@ diff --git a/source-timestamp b/source-timestamp new file mode 100644 index 00000000..06a06363 --- /dev/null +++ b/source-timestamp @@ -0,0 +1,3 @@ +2011-10-03 18:22:13 +0200 +GIT Revision: 6c33ac4c17512344a51413a39060e307da80c2a8 +GIT Branch: master diff --git a/split-modules b/split-modules new file mode 100644 index 00000000..fe75b300 --- /dev/null +++ b/split-modules @@ -0,0 +1,107 @@ +#!/bin/bash +# +# given a Module.supported, Module.base and modules.dep, generate list +# of base / supported / unsupported modules + +set -e +export LC_COLLATE=C + +usage() +{ + echo "Usage: ${0##*/} -b Module.base -s Module.supported [-d dir] [-i] [-o outdir]" +} + +options=$(getopt -o b:s:d:o:i -- "$@") +if test $? -ne 0; then + usage >&2 + exit 1 +fi +eval set -- "$options" +opt_base= +opt_supp= +opt_out=. +opt_dir=. +opt_ignore_errors=false +while test $# -gt 0; do + opt=$1 + shift + case "$opt" in + -b | -s | -d | -o | -D) + arg=$1 + shift + esac + case "$opt" in + -b) + opt_base=$arg ;; + -s) + opt_supp=$arg ;; + -d) + opt_dir=$arg ;; + -o) + opt_out=$arg ;; + -i) + opt_ignore_errors=true ;; + --) + break ;; + *) + echo "Unknown option $opt" >&2 + exit 1 + esac +done +if test -z "$opt_base" -o -z "$opt_supp"; then + usage >&2 + exit 1 +fi + +trap 'rm -rf "$tmp"' EXIT +tmp=$(mktemp -d) +mkdir "$tmp/empty" + +find "$opt_dir" -type f -name '*.ko' -printf '/%P\n' | \ + awk -F/ '{ n=$NF; gsub(/-/, "_", n); sub(/\.ko$/, "", n); print n " " $0; }' | \ + sort >"$tmp/all" + +modules_dep=$(find "$opt_dir" -type f -name modules.dep) +if test -z "$modules_dep"; then + echo "Cannot find modules.dep in $opt_dir" >&2 + exit 1 +fi +( + echo '%: + @echo $@ +ifdef EXPLAIN + @for dep in $^; do echo "$$dep needed by $@"; done >> $(EXPLAIN) +endif +' + sed -r 's:[^ ]*/([^/]*)\.ko\>:\1:g; y/-/_/' "$modules_dep" +) >"$tmp/dep" + +add_dependent_modules() +{ + xargs -r make EXPLAIN=$1 -rRs -C "$tmp/empty" -f "$tmp/dep" | sort -u +} + +# base +sed 'y/-/_/' <"$opt_base" | add_dependent_modules >"$tmp/base" +join -j 1 -o 2.2 "$tmp/base" "$tmp/all" >"$opt_out/base-modules" + +# main +sed 's/ .*//; y/-/_/' "$opt_supp" | sort -u >"$tmp/supp" +add_dependent_modules "$tmp/supp-explain" <"$tmp/supp" >"$tmp/supp-all" +if ! cmp -s "$tmp/supp" "$tmp/supp-all"; then + echo "The following unsupported modules are used by supported modules:" >&2 + join -j1 -a2 <(sort "$tmp/supp-explain") \ + <(join -v2 "$tmp/supp" "$tmp/supp-all") >&2 + echo "Please fix supported.conf." >&2 + if ! $opt_ignore_errors; then + exit 1 + fi +fi +join -j 1 -o 2.2 "$tmp/supp-all" "$tmp/all" >"$opt_out/main-modules" + +# unsupported +join -j 1 -v 2 -o 2.2 "$tmp/supp-all" "$tmp/all" >"$opt_out/unsupported-modules" + +exit 0 + + diff --git a/supported.conf b/supported.conf new file mode 100644 index 00000000..ab0e3b7e --- /dev/null +++ b/supported.conf @@ -0,0 +1,2724 @@ +# Configuration of base modules (which are supported), regularly and +# externally supported modules, and unsupported modules. +# See series.conf for a list of symbols defined. +# +# Use "-" for unsupported modules, "+base" for modules for +# kernel-$flavor-base, and "+external" for externally supported modules. +# +# Modules that a base module uses implicitly are also base modules, +# but at least they need to be marked as supported here. + + kernel/arch/ia64/perfmon/perfmon_generic + kernel/arch/ia64/perfmon/perfmon_itanium + kernel/arch/ia64/perfmon/perfmon_mckinley + kernel/arch/ia64/perfmon/perfmon_montecito + kernel/arch/ia64/kernel/err_inject + ++external kernel/arch/powerpc/platforms/cell/cbe-cpufreq ++external kernel/arch/powerpc/platforms/cell/cbe_cpufreq_pmi ++external kernel/arch/powerpc/platforms/cell/cbe_powerbutton ++external kernel/arch/powerpc/platforms/cell/cbe_thermal ++external kernel/arch/powerpc/platforms/cell/cpufreq_spudemand ++external kernel/arch/powerpc/platforms/cell/spufs/spufs ++external kernel/arch/powerpc/platforms/cell/spufs/sputrace ++external kernel/arch/powerpc/platforms/pseries/hvcserver ++external kernel/arch/powerpc/platforms/pseries/scanlog ++external kernel/arch/powerpc/sysdev/axonram + kernel/arch/powerpc/sysdev/bestcomm/bestcomm-ata # for Efika mpc52xx + kernel/arch/powerpc/sysdev/bestcomm/bestcomm-fec # for Efika mpc52xx + kernel/arch/powerpc/sysdev/bestcomm/bestcomm-gen-bd # for Efika mpc52xx ++external kernel/arch/powerpc/sysdev/pmi + kernel/arch/s390/appldata/appldata_mem + kernel/arch/s390/appldata/appldata_net_sum + kernel/arch/s390/appldata/appldata_os + kernel/arch/s390/crypto/aes_s390 + kernel/arch/s390/crypto/des_check_key + kernel/arch/s390/crypto/des_s390 + kernel/arch/s390/crypto/prng + kernel/arch/s390/crypto/sha1_s390 + kernel/arch/s390/crypto/sha256_s390 + kernel/arch/s390/crypto/sha512_s390 + kernel/arch/s390/crypto/sha_common + kernel/arch/s390/mm/cmm + 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 + kernel/arch/x86/crypto/twofish-x86_64 + kernel/arch/x86/kernel/apm + kernel/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq +- kernel/arch/x86/kernel/cpu/cpufreq/cpufreq-nforce2 +- kernel/arch/x86/kernel/cpu/cpufreq/e_powersaver +- kernel/arch/x86/kernel/cpu/cpufreq/gx-suspmod +- kernel/arch/x86/kernel/cpu/cpufreq/longhaul +- kernel/arch/x86/kernel/cpu/cpufreq/longrun + kernel/arch/x86/kernel/cpu/cpufreq/mperf +- kernel/arch/x86/kernel/cpu/cpufreq/p4-clockmod +- 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 +- kernel/arch/x86/kernel/cpu/cpufreq/speedstep-smi + kernel/arch/x86/kernel/cpuid # x86 generic CPUID driver + kernel/arch/x86/kernel/microcode # Intel CPU (IA-32) microcode update driver + kernel/arch/x86/kernel/msr # x86 generic MSR driver + kernel/arch/x86/kernel/scx200 + kernel/arch/x86/kvm/kvm + kernel/arch/x86/kvm/kvm-amd + kernel/arch/x86/kvm/kvm-intel + 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 + kernel/crypto/arc4 # ARC4 Cipher Algorithm + kernel/crypto/async_tx/async_memcpy + kernel/crypto/async_tx/async_pq + kernel/crypto/async_tx/async_raid6_recov + kernel/crypto/async_tx/async_tx + kernel/crypto/async_tx/async_xor + kernel/crypto/authenc + kernel/crypto/blowfish # Blowfish Cipher Algorithm + kernel/crypto/camellia + kernel/crypto/cast5 # Cast5 Cipher Algorithm + kernel/crypto/cast6 # Cast6 Cipher Algorithm + kernel/crypto/cbc + kernel/crypto/ccm + kernel/crypto/chainiv + kernel/crypto/crc32c # CRC32c (Castagnoli) calculations wrapper for lib/crc32c + kernel/crypto/cryptd + kernel/crypto/cryptomgr + kernel/crypto/crypto_algapi + kernel/crypto/crypto_blkcipher + kernel/crypto/crypto_null # Null Cryptographic Algorithms + kernel/crypto/crypto_wq + kernel/crypto/ctr + kernel/crypto/cts + kernel/crypto/deflate # Deflate Compression Algorithm for IPCOMP + kernel/crypto/des_generic + kernel/crypto/ecb + kernel/crypto/eseqiv + kernel/crypto/fcrypt + kernel/crypto/hmac + kernel/crypto/gcm + kernel/crypto/gf128mul + kernel/crypto/crypto_hash + kernel/crypto/khazad # Khazad Cryptographic Algorithm + kernel/crypto/krng + kernel/crypto/lrw + kernel/crypto/lzo + kernel/crypto/md4 # MD4 Message Digest Algorithm + kernel/crypto/md5 + kernel/crypto/michael_mic # Michael MIC + kernel/crypto/pcbc + kernel/crypto/pcompress + kernel/crypto/rmd128 + kernel/crypto/rmd160 + kernel/crypto/rmd256 + kernel/crypto/rmd320 + kernel/crypto/rng + kernel/crypto/salsa20_generic + kernel/crypto/seed + kernel/crypto/seqiv + kernel/crypto/serpent # Serpent Cipher Algorithm + kernel/crypto/sha1_generic + kernel/crypto/sha256_generic + kernel/crypto/sha512_generic + kernel/crypto/tcrypt # Quick & dirty crypto testing module + kernel/crypto/tea # TEA & XTEA Cryptographic Algorithms + kernel/crypto/tgr192 # Tiger hashing Algorithm + kernel/crypto/twofish_common + kernel/crypto/twofish # Twofish Cipher Algorithm + kernel/crypto/wp512 + kernel/crypto/xcbc + kernel/crypto/xor + kernel/crypto/xts + kernel/drivers/acpi/ac # ACPI AC Adapter Driver + kernel/drivers/acpi/battery # ACPI Battery Driver + kernel/drivers/acpi/bay + kernel/drivers/acpi/button # ACPI Button Driver + kernel/drivers/acpi/container ++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 + kernel/drivers/acpi/thermal # ACPI Thermal Zone Driver + kernel/drivers/acpi/toshiba_acpi + kernel/drivers/acpi/video + kernel/drivers/acpi/wmi ++base kernel/drivers/ata/ahci ++base kernel/drivers/ata/libahci + kernel/drivers/ata/ata_generic ++base kernel/drivers/ata/ata_piix # SCSI low-level driver for Intel PIIX/ICH ATA controllers ++base kernel/drivers/ata/libata # Library module for ATA devices + kernel/drivers/ata/pata_acpi + kernel/drivers/ata/pata_ali + kernel/drivers/ata/pata_amd # IBM pSeries JS20, AMD8111 board types + kernel/drivers/ata/pata_artop + kernel/drivers/ata/pata_atiixp + kernel/drivers/ata/pata_atp867x + kernel/drivers/ata/pata_cmd640 + kernel/drivers/ata/pata_cmd64x + kernel/drivers/ata/pata_cs5520 + kernel/drivers/ata/pata_cs5530 + kernel/drivers/ata/pata_cs5535 + kernel/drivers/ata/pata_cs5536 + kernel/drivers/ata/pata_cypress + kernel/drivers/ata/pata_efar + kernel/drivers/ata/pata_hpt366 + kernel/drivers/ata/pata_hpt37x + kernel/drivers/ata/pata_hpt3x2n + kernel/drivers/ata/pata_hpt3x3 + kernel/drivers/ata/pata_isapnp + kernel/drivers/ata/pata_it8213 + kernel/drivers/ata/pata_it821x + kernel/drivers/ata/pata_jmicron + kernel/drivers/ata/pata_legacy + kernel/drivers/ata/pata_marvell + kernel/drivers/ata/pata_mpc52xx + kernel/drivers/ata/pata_mpiix + kernel/drivers/ata/pata_netcell + kernel/drivers/ata/pata_ninja32 + kernel/drivers/ata/pata_ns87410 + kernel/drivers/ata/pata_ns87415 + kernel/drivers/ata/pata_oldpiix + kernel/drivers/ata/pata_opti + kernel/drivers/ata/pata_optidma + kernel/drivers/ata/pata_pcmcia + kernel/drivers/ata/pata_pdc2027x # IBM pSeries IDE hotplug + kernel/drivers/ata/pata_pdc202xx_old + kernel/drivers/ata/pata_qdi + kernel/drivers/ata/pata_radisys + kernel/drivers/ata/pata_rdc + kernel/drivers/ata/pata_rz1000 + kernel/drivers/ata/pata_sc1200 + kernel/drivers/ata/pata_sch + kernel/drivers/ata/pata_serverworks + kernel/drivers/ata/pata_sil680 + kernel/drivers/ata/pata_sis + kernel/drivers/ata/pata_sl82c105 # IBM pSeries POWER4 CD drive + kernel/drivers/ata/pata_triflex + kernel/drivers/ata/pata_via + kernel/drivers/ata/pata_winbond + kernel/drivers/ata/pdc_adma # Pacific Digital Corporation ADMA + kernel/drivers/ata/sata_inic162x + kernel/drivers/ata/sata_mv # Marvell SATA support + kernel/drivers/ata/sata_nv # low-level driver for NVIDIA nForce SATA controller + kernel/drivers/ata/sata_promise # Promise SATA low-level driver + kernel/drivers/ata/sata_qstor # Pacific Digital Corporation QStor SATA + kernel/drivers/ata/sata_sil24 # Silicon Image SATA + kernel/drivers/ata/sata_sil # low-level driver for Silicon Image SATA controller + kernel/drivers/ata/sata_sis # low-level driver for Silicon Integratad Systems SATA controller + kernel/drivers/ata/sata_svw # low-level driver for K2 SATA controller in G5 PowerMac + kernel/drivers/ata/sata_sx4 # Promise SATA low-level driver + kernel/drivers/ata/sata_uli # low-level driver for ULi Electronics SATA controller + kernel/drivers/ata/sata_via # SCSI low-level driver for VIA SATA controllers + kernel/drivers/ata/sata_vsc # low-level driver for Vitesse VSC7174 SATA controller +- kernel/drivers/atm/adummy +- kernel/drivers/atm/ambassador +- kernel/drivers/atm/atmtcp +- kernel/drivers/atm/eni +- kernel/drivers/atm/firestream +- kernel/drivers/atm/fore_200e +- kernel/drivers/atm/he +- kernel/drivers/atm/horizon +- kernel/drivers/atm/idt77105 +- kernel/drivers/atm/idt77252 +- kernel/drivers/atm/iphase +- kernel/drivers/atm/lanai +- kernel/drivers/atm/nicstar +- kernel/drivers/atm/suni +- kernel/drivers/atm/uPD98402 +- kernel/drivers/atm/zatm + kernel/drivers/auxdisplay/cfag12864b + kernel/drivers/auxdisplay/cfag12864bfb + kernel/drivers/auxdisplay/ks0108 + kernel/drivers/block/DAC960 + kernel/drivers/block/aoe/aoe + kernel/drivers/block/brd + kernel/drivers/block/cciss # Driver for HP Controller SA5xxx SA6xxx version 2.6.0 + kernel/drivers/block/cpqarray # Driver for Compaq Smart2 Array Controllers version 2.6.0 + kernel/drivers/block/cryptoloop # loop blockdevice transferfunction adaptor / CryptoAPI + kernel/drivers/block/floppy ++base kernel/drivers/block/loop + kernel/drivers/block/loop_fish2 + kernel/drivers/block/nbd # Network Block Device +- kernel/drivers/block/osdblk +- kernel/drivers/block/paride/aten +- kernel/drivers/block/paride/bpck +- kernel/drivers/block/paride/bpck6 +- kernel/drivers/block/paride/comm +- kernel/drivers/block/paride/dstr +- kernel/drivers/block/paride/epat +- kernel/drivers/block/paride/epia +- kernel/drivers/block/paride/fit2 +- kernel/drivers/block/paride/fit3 +- kernel/drivers/block/paride/friq +- kernel/drivers/block/paride/frpw +- kernel/drivers/block/paride/kbic +- kernel/drivers/block/paride/ktti +- kernel/drivers/block/paride/on20 +- kernel/drivers/block/paride/on26 +- kernel/drivers/block/paride/paride +- kernel/drivers/block/paride/pcd +- kernel/drivers/block/paride/pd +- kernel/drivers/block/paride/pf +- kernel/drivers/block/paride/pg +- kernel/drivers/block/paride/pt + kernel/drivers/block/pktcdvd + kernel/drivers/block/ps3disk # Sony PS3 disk +- kernel/drivers/block/swim3 # PowerMac SWIM3 floppy controller + kernel/drivers/block/sx8 # Promise SATA SX8 block driver + kernel/drivers/block/umem # Micro Memory(tm) PCI memory board block driver ++external kernel/drivers/block/viodasd # IBM legacy iSeries virtual disk + kernel/drivers/block/virtio_blk ++isa kernel/drivers/block/xd + kernel/drivers/bluetooth/bcm203x # Broadcom Blutonium firmware driver + kernel/drivers/bluetooth/bfusb # BlueFRITZ! USB driver + kernel/drivers/bluetooth/bluecard_cs # Bluetooth driver for the Anycom BlueCard (LSE039/LSE041) + kernel/drivers/bluetooth/bpa10x # Digianswer Bluetooth USB driver + kernel/drivers/bluetooth/bt3c_cs # Bluetooth driver for the 3Com Bluetooth PCMCIA card + kernel/drivers/bluetooth/btsdio + kernel/drivers/bluetooth/btuart_cs # Bluetooth driver for Bluetooth PCMCIA cards with HCI UART interface + kernel/drivers/bluetooth/btusb + kernel/drivers/bluetooth/dtl1_cs # Bluetooth driver for Nokia Connectivity Card DTL-1 + kernel/drivers/bluetooth/hci_uart # Bluetooth HCI UART driver + kernel/drivers/bluetooth/hci_vhci # Bluetooth VHCI driver + kernel/drivers/cdrom/cdrom ++external kernel/drivers/cdrom/viocd # IBM legacy iSeries virtual CD + kernel/drivers/char/agp/agpgart + kernel/drivers/char/agp/ali-agp + kernel/drivers/char/agp/amd64-agp + kernel/drivers/char/agp/amd-k7-agp + kernel/drivers/char/agp/ati-agp + kernel/drivers/char/agp/efficeon-agp + kernel/drivers/char/agp/hp-agp + kernel/drivers/char/agp/i460-agp + kernel/drivers/char/agp/intel-agp + kernel/drivers/char/agp/nvidia-agp + kernel/drivers/char/agp/sgi-agp + kernel/drivers/char/agp/sis-agp + kernel/drivers/char/agp/sworks-agp + kernel/drivers/char/agp/uninorth-agp + kernel/drivers/char/agp/via-agp + kernel/drivers/char/applicom # Driver for Applicom Profibus card + kernel/drivers/char/briq_panel + kernel/drivers/char/bsr + kernel/drivers/char/crasher # slab testing module from Chris Mason + kernel/drivers/char/cs5535_gpio + kernel/drivers/char/cyclades + kernel/drivers/char/dtlk + kernel/drivers/char/epca + kernel/drivers/char/esp + kernel/drivers/char/generic_serial + kernel/drivers/char/hangcheck-timer # Hangcheck-timer detects when the system has gone out to lunch past a certain margin. ++external kernel/drivers/char/hvcs # IBM pSeries virtual console server + kernel/drivers/char/hw_random/amd-rng + kernel/drivers/char/hw_random/geode-rng + kernel/drivers/char/hw_random/intel-rng + kernel/drivers/char/hw_random/rng-core + kernel/drivers/char/hw_random/via-rng + kernel/drivers/char/hw_random/virtio-rng + kernel/drivers/char/i8k +- kernel/drivers/char/ip2/ip2 + kernel/drivers/char/ipmi/ipmi_devintf + kernel/drivers/char/ipmi/ipmi_msghandler + kernel/drivers/char/ipmi/ipmi_poweroff + kernel/drivers/char/ipmi/ipmi_si + kernel/drivers/char/ipmi/ipmi_watchdog +- kernel/drivers/char/isicom + kernel/drivers/char/lp + kernel/drivers/char/mbcs + kernel/drivers/char/mmtimer +- kernel/drivers/char/moxa + kernel/drivers/char/mspec + kernel/drivers/char/mwave/mwave # 3780i Advanced Communications Processor (Mwave) driver + kernel/drivers/char/mxser # MOXA Smartio Family Multiport Board Device Driver + kernel/drivers/char/n_hdlc + kernel/drivers/char/n_r3964 + kernel/drivers/char/nozomi + kernel/drivers/char/nsc_gpio + kernel/drivers/char/nvram + kernel/drivers/char/pc8736x_gpio +- kernel/drivers/char/pcmcia/cm4000_cs # A driver for the PCMCIA Smartcard Reader "Omnikey CardMan Mobile 4000" +- kernel/drivers/char/pcmcia/cm4040_cs # A driver for the Omnikey PCMCIA smartcard reader CardMan 4040 + kernel/drivers/char/pcmcia/ipwireless/ipwireless + kernel/drivers/char/pcmcia/synclink_cs + kernel/drivers/char/ppdev + kernel/drivers/char/ps3flash # Sony PS3 flash + kernel/drivers/char/raw + kernel/drivers/char/rio/rio + kernel/drivers/char/riscom8 + kernel/drivers/char/rocket # Comtrol RocketPort driver + kernel/drivers/char/scx200_gpio + kernel/drivers/char/sonypi +- kernel/drivers/char/specialix + kernel/drivers/char/sx + kernel/drivers/char/synclink ++review kernel/drivers/char/synclink_gt # Device driver for Microgate SyncLink GT serial adapters + kernel/drivers/char/synclinkmp +- kernel/drivers/char/tlclk # Telecom Clock Driver for MPCBL0010 ATCA computer blade + kernel/drivers/char/toshiba + kernel/drivers/char/tpm/tpm + kernel/drivers/char/tpm/tpm_atmel + kernel/drivers/char/tpm/tpm_bios + kernel/drivers/char/tpm/tpm_infineon + kernel/drivers/char/tpm/tpm_nsc + kernel/drivers/char/tpm/tpm_tis + kernel/drivers/char/tpm/tpm_xenu ++external kernel/drivers/char/viotape # IBM legacy iSeries virtual tape + kernel/drivers/char/virtio_console + kernel/drivers/clocksource/scx200_hrt + kernel/drivers/cpufreq/cpufreq_conservative + kernel/drivers/cpufreq/cpufreq_powersave # CPUfreq policy governor 'powersave' + kernel/drivers/cpufreq/cpufreq_stats + kernel/drivers/cpufreq/cpufreq_userspace # CPUfreq policy governor 'userspace' + kernel/drivers/crypto/geode-aes + kernel/drivers/crypto/hifn_795x + kernel/drivers/crypto/padlock-aes + kernel/drivers/crypto/padlock-sha + kernel/drivers/dca/dca + kernel/drivers/dma/dmatest + kernel/drivers/dma/ioatdma # IOAT DMA Driver from Intel + kernel/drivers/edac/amd76x_edac ++external kernel/drivers/edac/cell_edac + kernel/drivers/edac/e752x_edac + kernel/drivers/edac/e7xxx_edac + kernel/drivers/edac/edac_core + kernel/drivers/edac/i3000_edac + kernel/drivers/edac/i5000_edac + kernel/drivers/edac/i5100_edac + kernel/drivers/edac/i82860_edac + kernel/drivers/edac/i82875p_edac + kernel/drivers/edac/i82975x_edac + kernel/drivers/edac/r82600_edac ++external kernel/drivers/firmware/dcdbas ++external kernel/drivers/firmware/dell_rbu ++base kernel/drivers/firmware/edd + kernel/drivers/firmware/efivars # efi sysfs information + kernel/drivers/firmware/iscsi_ibft + kernel/drivers/gpio/bt8xxgpio + kernel/drivers/gpio/max7301 + kernel/drivers/gpio/max730x + kernel/drivers/gpio/max732x + kernel/drivers/gpio/mcp23s08 + kernel/drivers/gpio/pca953x + kernel/drivers/gpio/pcf857x + kernel/drivers/gpu/drm/drm # DRM core + kernel/drivers/gpu/drm/drm_kms_helper + kernel/drivers/gpu/drm/i810/i810 # Intel i810 +- kernel/drivers/gpu/drm/i830/i830 # obsoleted by i915 + kernel/drivers/gpu/drm/i915/i915 # Intel 830M/i915 + kernel/drivers/gpu/drm/mga/mga # Matrox G200/G400 + kernel/drivers/gpu/drm/r128/r128 # ATI Rage 128 + kernel/drivers/gpu/drm/radeon/radeon # ATI Radeon +- kernel/drivers/gpu/drm/savage/savage +- kernel/drivers/gpu/drm/sis/sis # SIS 300/630/540 + kernel/drivers/gpu/drm/tdfx/tdfx # 3dfx Banshee/Voodoo3+ + kernel/drivers/gpu/drm/ttm/ttm +- kernel/drivers/gpu/drm/via/via + + kernel/drivers/hid/hid + kernel/drivers/hid/hid-a4tech + kernel/drivers/hid/hid-apple + kernel/drivers/hid/hid-belkin + kernel/drivers/hid/hid-cherry + kernel/drivers/hid/hid-chicony + kernel/drivers/hid/hid-cypress + kernel/drivers/hid/hid-drff + kernel/drivers/hid/hid-ezkey + kernel/drivers/hid/hid-gaff + kernel/drivers/hid/hid-gyration + kernel/drivers/hid/hid-kensington + kernel/drivers/hid/hid-kye + kernel/drivers/hid/hid-logitech + kernel/drivers/hid/hid-microsoft + kernel/drivers/hid/hid-monterey + kernel/drivers/hid/hid-ntrig + kernel/drivers/hid/hid-petalynx + kernel/drivers/hid/hid-pl + kernel/drivers/hid/hid-samsung + kernel/drivers/hid/hid-sjoy + kernel/drivers/hid/hid-sony + kernel/drivers/hid/hid-sunplus + kernel/drivers/hid/hid-tmff + kernel/drivers/hid/hid-topseed + kernel/drivers/hid/hid-twinhan + kernel/drivers/hid/hid-wacom + kernel/drivers/hid/hid-zpff + kernel/drivers/hid/usbhid/usbhid + +- kernel/drivers/hwmon/abituguru3 # Abit uGuru rev. 3 +- kernel/drivers/hwmon/abituguru # Abit uGuru rev. 1 and 2 +- kernel/drivers/hwmon/ad7414 # AD7414 +- kernel/drivers/hwmon/ad7418 # AD7416, AD7417, AD7418 +- kernel/drivers/hwmon/adcxx # Generic ADCxxxSxxx driver +- kernel/drivers/hwmon/adm1021 # adm1021 driver +- kernel/drivers/hwmon/adm1025 # ADM1025 driver +- kernel/drivers/hwmon/adm1026 +- kernel/drivers/hwmon/adm1029 # ADM1029 +- kernel/drivers/hwmon/adm1031 # ADM1031/ADM1030 driver +- kernel/drivers/hwmon/adm9240 +- kernel/drivers/hwmon/ads7828 # 12-bit 8-channel ADC +- kernel/drivers/hwmon/adt7462 # Analog Devices ADT7462 +- kernel/drivers/hwmon/adt7470 # Analog Devices ADT7470 +- kernel/drivers/hwmon/adt7473 # Analog Devices ADT7473 +- kernel/drivers/hwmon/adt7475 # Analog Devices ADT7475 + kernel/drivers/hwmon/ams/ams +- kernel/drivers/hwmon/applesmc +- kernel/drivers/hwmon/asb100 # ASB100 Bach driver +- kernel/drivers/hwmon/asus_atk0110 # Asus ATK0110 (ACPI) +- kernel/drivers/hwmon/atxp1 +- kernel/drivers/hwmon/coretemp # Intel Core/Core2 thermal sensors +- kernel/drivers/hwmon/dme1737 # SMSC DME1737, SCH311x and compatible +- kernel/drivers/hwmon/ds1621 # DS1621 driver +- kernel/drivers/hwmon/f71805f # Fintek Super-I/O +- kernel/drivers/hwmon/f71882fg # Fintek Super-I/O +- kernel/drivers/hwmon/f75375s # Fintek F75373, F75375 +- kernel/drivers/hwmon/fschmd # Unified FSC driver +- kernel/drivers/hwmon/g760a +- kernel/drivers/hwmon/gl518sm # GL518SM driver +- kernel/drivers/hwmon/gl520sm +- kernel/drivers/hwmon/hdaps + kernel/drivers/hwmon/hp_accel # HP 3D DriveGuard (FATE #306448) + kernel/drivers/hwmon/hwmon + kernel/drivers/hwmon/hwmon-vid + kernel/drivers/hwmon/i5k_amb # Intel 5000 series FB-DIMM AMB ++external kernel/drivers/hwmon/ibmaem # IBM System Director Active Energy Manager, supported by IBM ++external kernel/drivers/hwmon/ibmpex # IBM PowerExecutive power sensors, supported by IBM +- kernel/drivers/hwmon/it87 # IT8705F, IT8712F, Sis950 driver +- kernel/drivers/hwmon/k8temp # AMD K8 thermal sensors + kernel/drivers/hwmon/lis3lv02d # needed by hp_accel +- kernel/drivers/hwmon/lis3lv02d_spi +- kernel/drivers/hwmon/lm63 +- kernel/drivers/hwmon/lm70 # LM70 (on SPI bus) +- kernel/drivers/hwmon/lm75 # LM75 driver +- kernel/drivers/hwmon/lm77 # LM77 driver +- kernel/drivers/hwmon/lm78 # LM78, LM78-J and LM79 driver +- kernel/drivers/hwmon/lm80 # LM80 driver +- kernel/drivers/hwmon/lm83 # LM83 driver +- kernel/drivers/hwmon/lm85 # LM85-B, LM85-C driver +- kernel/drivers/hwmon/lm87 +- kernel/drivers/hwmon/lm90 # LM90/ADM1032 driver +- kernel/drivers/hwmon/lm92 +- kernel/drivers/hwmon/lm93 # National Semi. LM93 +- kernel/drivers/hwmon/lm95241 +- kernel/drivers/hwmon/ltc4215 +- kernel/drivers/hwmon/ltc4245 +- kernel/drivers/hwmon/max1111 +- kernel/drivers/hwmon/max1619 # MAX1619 sensor driver +- kernel/drivers/hwmon/max6650 # MAX6650, MAX6651 +- kernel/drivers/hwmon/pc87360 +- kernel/drivers/hwmon/pc87427 # PC87427 fan sensors +- kernel/drivers/hwmon/sht15 +- kernel/drivers/hwmon/sis5595 +- kernel/drivers/hwmon/smsc47b397 +- kernel/drivers/hwmon/smsc47m192 # SMSC LPC47M1xx thermal sensors +- kernel/drivers/hwmon/smsc47m1 # SMSC LPC47M1xx fan sensors driver +- kernel/drivers/hwmon/thmc50 # TI THMC50, Analog Dev. ADM1022 +- kernel/drivers/hwmon/tmp401 +- kernel/drivers/hwmon/tmp421 +- kernel/drivers/hwmon/via686a # VIA 686A Sensor device +- kernel/drivers/hwmon/vt1211 # VIA VT1211 super-I/O sensors +- kernel/drivers/hwmon/vt8231 +- kernel/drivers/hwmon/w83627ehf +- kernel/drivers/hwmon/w83627hf # W83627HF driver +- kernel/drivers/hwmon/w83781d # W83781D driver +- kernel/drivers/hwmon/w83791d +- kernel/drivers/hwmon/w83792d +- kernel/drivers/hwmon/w83793 +- kernel/drivers/hwmon/w83l785ts # W83L785TS-S driver +- kernel/drivers/hwmon/w83l786ng # Winbond W83L786 + kernel/drivers/i2c/algos/i2c-algo-bit # I2C-Bus bit-banging algorithm + kernel/drivers/i2c/algos/i2c-algo-pca # I2C-Bus PCA9564 algorithm + kernel/drivers/i2c/busses/i2c-ali1535 # ALI1535 SMBus driver + kernel/drivers/i2c/busses/i2c-ali1563 + kernel/drivers/i2c/busses/i2c-ali15x3 # ALI15X3 SMBus driver + kernel/drivers/i2c/busses/i2c-amd756 # AMD756/766/768/8111 and nVidia nForce SMBus driver + kernel/drivers/i2c/busses/i2c-amd756-s4882 # SMBus multiplexing, Tyan S4882 + kernel/drivers/i2c/busses/i2c-amd8111 # AMD8111 SMBus 2.0 driver + kernel/drivers/i2c/busses/i2c-gpio + kernel/drivers/i2c/busses/i2c-hydra + kernel/drivers/i2c/busses/i2c-i801 # Intel 82801 SMBus driver + kernel/drivers/i2c/busses/i2c-isch # Intel SCH SMBus driver + kernel/drivers/i2c/busses/i2c-nforce2 # nForce2 SMBus driver + kernel/drivers/i2c/busses/i2c-nforce2-s4985 # SMBus multiplexing, Tyan S4985 + kernel/drivers/i2c/busses/i2c-ocores + kernel/drivers/i2c/busses/i2c-parport # I2C bus over parallel port + kernel/drivers/i2c/busses/i2c-parport-light # I2C bus over parallel port (light) + kernel/drivers/i2c/busses/i2c-pca-isa # ISA base PCA9564 driver + kernel/drivers/i2c/busses/i2c-pca-platform + kernel/drivers/i2c/busses/i2c-piix4 + kernel/drivers/i2c/busses/i2c-scmi # SMBus CMI (ACPI) + kernel/drivers/i2c/busses/i2c-sis5595 # SIS5595 SMBus driver + kernel/drivers/i2c/busses/i2c-sis630 # SIS630 SMBus driver + kernel/drivers/i2c/busses/i2c-sis96x # SiS96x SMBus driver + kernel/drivers/i2c/busses/i2c-stub + kernel/drivers/i2c/busses/i2c-taos-evm + kernel/drivers/i2c/busses/i2c-tiny-usb + kernel/drivers/i2c/busses/i2c-via # i2c for Via vt82c586b southbridge + kernel/drivers/i2c/busses/i2c-viapro # vt82c596 SMBus driver + kernel/drivers/i2c/busses/scx200_acb # NatSemi SCx200 ACCESS.bus Driver + kernel/drivers/i2c/busses/scx200_i2c + kernel/drivers/i2c/chips/at24 + kernel/drivers/i2c/chips/ds1682 + kernel/drivers/i2c/chips/eeprom # I2C EEPROM driver + kernel/drivers/i2c/chips/max6875 # MAX6874/MAX6875 + kernel/drivers/i2c/chips/pcf8591 # PCF8591 driver + kernel/drivers/i2c/chips/tsl2550 # Light sensor + kernel/drivers/i2c/i2c-core # I2C-Bus main module + kernel/drivers/i2c/i2c-dev # I2C /dev entries driver + kernel/drivers/i2c/i2c-smbus + kernel/drivers/ide/ide-cd_mod + kernel/drivers/ide/ide-core + kernel/drivers/ide/ide-disk + kernel/drivers/ide/ide-floppy + kernel/drivers/ide/ide-generic + kernel/drivers/ide/ide-pnp ++check kernel/drivers/ide/ide-tape # ATAPI Streaming TAPE Driver +- kernel/drivers/ide/legacy/ali14xx + kernel/drivers/ide/legacy/dtc2278 + kernel/drivers/ide/legacy/ht6560b + kernel/drivers/ide/legacy/ide-4drives + kernel/drivers/ide/legacy/ide-cs # PCMCIA ATA/IDE card driver + kernel/drivers/ide/legacy/ide_platform + kernel/drivers/ide/legacy/qd65xx + kernel/drivers/ide/legacy/umc8672 + kernel/drivers/ide/pci/aec62xx + kernel/drivers/ide/pci/alim15x3 + kernel/drivers/ide/pci/amd74xx + kernel/drivers/ide/pci/atiixp # PCI driver module for ATI IXP IDE + kernel/drivers/ide/pci/cmd640 + kernel/drivers/ide/pci/cmd64x + kernel/drivers/ide/pci/cs5520 # PCI driver module for Cyrix 5510/5520 IDE + kernel/drivers/ide/pci/cs5530 # PCI driver module for Cyrix/NS 5530 IDE + kernel/drivers/ide/pci/cs5535 # AMD CS5535 driver + kernel/drivers/ide/pci/delkin_cb + kernel/drivers/ide/pci/hpt366 + kernel/drivers/ide/pci/ide-pci-generic + kernel/drivers/ide/pci/it8213 +- kernel/drivers/ide/pci/it821x # ITE8212 driver + kernel/drivers/ide/pci/jmicron + kernel/drivers/ide/pci/ns87415 + kernel/drivers/ide/pci/opti621 + kernel/drivers/ide/pci/pdc202xx_new + kernel/drivers/ide/pci/pdc202xx_old + kernel/drivers/ide/pci/piix + kernel/drivers/ide/pci/rz1000 +- kernel/drivers/ide/pci/sc1200 + kernel/drivers/ide/pci/serverworks + kernel/drivers/ide/pci/sgiioc4 + kernel/drivers/ide/pci/siimage + kernel/drivers/ide/pci/sis5513 +- kernel/drivers/ide/pci/slc90e66 +- kernel/drivers/ide/pci/triflex + kernel/drivers/ide/pci/trm290 + kernel/drivers/ide/pci/via82cxxx + kernel/drivers/ieee1394/dv1394 # driver for DV input/output on OHCI board + kernel/drivers/ieee1394/eth1394 # IEEE 1394 IPv4 Driver (IPv4-over-1394 as per RFC 2734) + kernel/drivers/ieee1394/ieee1394 + kernel/drivers/ieee1394/ohci1394 # Driver for PCI OHCI IEEE-1394 controllers + kernel/drivers/ieee1394/pcilynx # driver for Texas Instruments PCI Lynx IEEE-1394 controller + kernel/drivers/ieee1394/raw1394 + kernel/drivers/ieee1394/sbp2 # IEEE-1394 SBP-2 protocol driver + kernel/drivers/ieee1394/video1394 # driver for digital video on OHCI board + kernel/drivers/infiniband/core/ib_addr + kernel/drivers/infiniband/core/ib_cm + kernel/drivers/infiniband/core/ib_core + kernel/drivers/infiniband/core/ib_mad + kernel/drivers/infiniband/core/ib_sa + kernel/drivers/infiniband/core/ib_ucm + kernel/drivers/infiniband/core/ib_umad + kernel/drivers/infiniband/core/ib_uverbs + kernel/drivers/infiniband/core/iw_cm + kernel/drivers/infiniband/core/rdma_cm + kernel/drivers/infiniband/core/rdma_ucm + kernel/drivers/infiniband/hw/amso1100/iw_c2 + kernel/drivers/infiniband/hw/cxgb3/iw_cxgb3 + kernel/drivers/infiniband/hw/ehca/ib_ehca + kernel/drivers/infiniband/hw/ipath/ib_ipath + kernel/drivers/infiniband/hw/mlx4/mlx4_ib + kernel/drivers/infiniband/hw/mthca/ib_mthca + kernel/drivers/infiniband/hw/nes/iw_nes + kernel/drivers/infiniband/ulp/ipoib/ib_ipoib + kernel/drivers/infiniband/ulp/iser/ib_iser + kernel/drivers/infiniband/ulp/srp/ib_srp + + kernel/drivers/input/evbug + kernel/drivers/input/ff-memless + kernel/drivers/input/gameport/emu10k1-gp # EMU10k1 gameport driver + kernel/drivers/input/gameport/fm801-gp + kernel/drivers/input/gameport/gameport # Generic gameport layer + kernel/drivers/input/gameport/lightning # PDPI Lightning 4 gamecard driver + kernel/drivers/input/gameport/ns558 # Classic gameport (ISA/PnP) driver + kernel/drivers/input/input-polldev + kernel/drivers/input/joydev # Joystick device interfaces + kernel/drivers/input/joystick/a3d # FP-Gaming Assasin 3D joystick driver + kernel/drivers/input/joystick/adi # Logitech ADI joystick family driver + kernel/drivers/input/joystick/analog # Analog joystick and gamepad driver + kernel/drivers/input/joystick/cobra # Creative Labs Blaster GamePad Cobra driver + kernel/drivers/input/joystick/db9 # Atari, Amstrad, Commodore, Amiga, Sega, etc. joystick driver + kernel/drivers/input/joystick/gamecon # NES, SNES, N64, MultiSystem, PSX gamepad driver + kernel/drivers/input/joystick/gf2k # Genius Flight 2000 joystick driver + kernel/drivers/input/joystick/grip # Gravis GrIP protocol joystick driver + kernel/drivers/input/joystick/grip_mp # Gravis Grip Multiport driver + kernel/drivers/input/joystick/guillemot # Guillemot Digital joystick driver + kernel/drivers/input/joystick/iforce/iforce # USB/RS232 I-Force joysticks and wheels driver + kernel/drivers/input/joystick/interact # InterAct digital joystick driver + kernel/drivers/input/joystick/joydump # Gameport data dumper module + kernel/drivers/input/joystick/magellan # Magellan and SpaceMouse 6dof controller driver + kernel/drivers/input/joystick/sidewinder # Microsoft SideWinder joystick family driver + kernel/drivers/input/joystick/spaceball # SpaceTec SpaceBall 2003/3003/4000 FLX driver + kernel/drivers/input/joystick/spaceorb # SpaceTec SpaceOrb 360 and Avenger 6dof controller driver + kernel/drivers/input/joystick/stinger # Gravis Stinger gamepad driver + kernel/drivers/input/joystick/tmdc # ThrustMaster DirectConnect joystick driver + kernel/drivers/input/joystick/turbografx # TurboGraFX parallel port interface driver + kernel/drivers/input/joystick/twidjoy # Handykey Twiddler keyboard as a joystick driver + kernel/drivers/input/joystick/walkera0701 + kernel/drivers/input/joystick/warrior # Logitech WingMan Warrior joystick driver + kernel/drivers/input/joystick/xpad + kernel/drivers/input/joystick/zhenhua + kernel/drivers/input/keyboard/adp5588-keys + kernel/drivers/input/keyboard/gpio_keys + kernel/drivers/input/keyboard/lm8323 + kernel/drivers/input/keyboard/matrix_keypad + kernel/drivers/input/keyboard/max7359_keypad + kernel/drivers/input/keyboard/newtonkbd # Newton keyboard driver + kernel/drivers/input/keyboard/opencores-kbd + 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 + kernel/drivers/input/misc/atlas_btns + kernel/drivers/input/misc/cm109 + kernel/drivers/input/misc/keyspan_remote + kernel/drivers/input/misc/pcap_keys + kernel/drivers/input/misc/pcf50633-input + kernel/drivers/input/misc/pcspkr + kernel/drivers/input/misc/powermate + kernel/drivers/input/misc/rotary_encoder + kernel/drivers/input/misc/twl4030-pwrbutton + kernel/drivers/input/misc/uinput # User level driver support for input subsystem + kernel/drivers/input/misc/winbond-cir + kernel/drivers/input/misc/yealink + kernel/drivers/input/mouse/appletouch + kernel/drivers/input/mouse/bcm5974 + kernel/drivers/input/mouse/gpio_mouse + kernel/drivers/input/mouse/sermouse # Serial mouse driver + kernel/drivers/input/mouse/synaptics_i2c + kernel/drivers/input/mouse/vsxxxaa + kernel/drivers/input/serio/ct82c710 # 82C710 C&T mouse port chip driver + kernel/drivers/input/serio/parkbd # Parallel port to Keyboard port adapter driver + kernel/drivers/input/serio/pcips2 # PCI PS/2 keyboard/mouse driver + kernel/drivers/input/serio/serio_raw # Raw serio driver + kernel/drivers/input/serio/serport # Input device TTY line discipline + kernel/drivers/input/serio/xilinx_ps2 + kernel/drivers/input/tablet/acecad + kernel/drivers/input/tablet/aiptek + kernel/drivers/input/tablet/gtco + kernel/drivers/input/tablet/kbtab + kernel/drivers/input/tablet/wacom + kernel/drivers/input/touchscreen/ad7877 + kernel/drivers/input/touchscreen/ad7879 + kernel/drivers/input/touchscreen/ads7846 # ADS7846 based touchscreen and sensor driver + kernel/drivers/input/touchscreen/eeti_ts + kernel/drivers/input/touchscreen/elo # Elo serial touchscreen driver + kernel/drivers/input/touchscreen/elousb + kernel/drivers/input/touchscreen/fujitsu_ts + kernel/drivers/input/touchscreen/gunze # Gunze AHL-51S touchscreen driver + kernel/drivers/input/touchscreen/htcpen + kernel/drivers/input/touchscreen/inexio + kernel/drivers/input/touchscreen/mcs5000_ts + kernel/drivers/input/touchscreen/mk712 # ICS MicroClock MK712 TouchScreen driver + kernel/drivers/input/touchscreen/mtouch # MicroTouch (3M) serial touchscreen driver + kernel/drivers/input/touchscreen/pcap_ts + kernel/drivers/input/touchscreen/penmount + kernel/drivers/input/touchscreen/touchit213 + kernel/drivers/input/touchscreen/touchright + kernel/drivers/input/touchscreen/touchwin + kernel/drivers/input/touchscreen/tsc2007 + kernel/drivers/input/touchscreen/ucb1400_ts + kernel/drivers/input/touchscreen/usbtouchscreen + kernel/drivers/input/touchscreen/w90p910_ts + kernel/drivers/input/touchscreen/wacom_w8001 + kernel/drivers/input/touchscreen/wm97xx-ts ++isa kernel/drivers/input/mouse/inport ++isa kernel/drivers/input/mouse/logibm ++isa kernel/drivers/input/mouse/pc110pad +- kernel/drivers/input/misc/wistron_btns + + ++isa kernel/drivers/isdn/act2000/act2000 + kernel/drivers/isdn/capi/capi # CAPI4Linux: Userspace /dev/capi20 interface + kernel/drivers/isdn/capi/capidrv # CAPI4Linux: Interface to ISDN4Linux + kernel/drivers/isdn/capi/capifs # CAPI4Linux: /dev/capi/ filesystem + kernel/drivers/isdn/capi/kernelcapi # CAPI4Linux: kernel CAPI layer +- kernel/drivers/isdn/divert/dss1_divert + kernel/drivers/isdn/gigaset/bas_gigaset + kernel/drivers/isdn/gigaset/gigaset + kernel/drivers/isdn/gigaset/ser_gigaset + kernel/drivers/isdn/gigaset/usb_gigaset + kernel/drivers/isdn/hardware/avm/avm_cs # CAPI4Linux: PCMCIA client driver for AVM B1/M1/M2 + kernel/drivers/isdn/hardware/avm/b1 # CAPI4Linux: Common support for active AVM cards + kernel/drivers/isdn/hardware/avm/b1dma # CAPI4Linux: DMA support for active AVM cards ++isa kernel/drivers/isdn/hardware/avm/b1isa + kernel/drivers/isdn/hardware/avm/b1pci # CAPI4Linux: Driver for AVM B1 PCI card + kernel/drivers/isdn/hardware/avm/b1pcmcia # CAPI4Linux: Driver for AVM PCMCIA cards + kernel/drivers/isdn/hardware/avm/c4 # CAPI4Linux: Driver for AVM C2/C4 cards ++isa kernel/drivers/isdn/hardware/avm/t1isa + kernel/drivers/isdn/hardware/avm/t1pci # CAPI4Linux: Driver for AVM T1 PCI card + kernel/drivers/isdn/hardware/eicon/divacapi + kernel/drivers/isdn/hardware/eicon/divadidd + kernel/drivers/isdn/hardware/eicon/diva_idi + kernel/drivers/isdn/hardware/eicon/diva_mnt + kernel/drivers/isdn/hardware/eicon/divas + kernel/drivers/isdn/hardware/mISDN/hfcmulti # mISDN HFC 4S/8S E1 + kernel/drivers/isdn/hardware/mISDN/hfcpci # mISDN HFC PCI + kernel/drivers/isdn/hisax/avma1_cs # ISDN4Linux: PCMCIA client driver for AVM A1/Fritz!PCMCIA cards + kernel/drivers/isdn/hisax/elsa_cs # ISDN4Linux: PCMCIA client driver for Elsa PCM cards + kernel/drivers/isdn/hisax/hfc4s8s_l1 # FC-4S/8S low layer interface for Cologne Chip HFC-4S/8S isdn chips + kernel/drivers/isdn/hisax/hfc_usb # HFC I4L USB driver + kernel/drivers/isdn/hisax/hisax_fcpcipnp # AVM Fritz!PCI/PnP ISDN driver + kernel/drivers/isdn/hisax/hisax_isac # ISAC/ISAC-SX driver + kernel/drivers/isdn/hisax/hisax # ISDN4Linux: Driver for passive ISDN cards + kernel/drivers/isdn/hisax/hisax_st5481 # ISDN4Linux: driver for ST5481 USB ISDN adapter + kernel/drivers/isdn/hisax/isdnhdlc # General purpose ISDN HDLC decoder + kernel/drivers/isdn/hisax/sedlbauer_cs + kernel/drivers/isdn/hisax/teles_cs # ISDN4Linux: PCMCIA client driver for Teles PCMCIA cards + kernel/drivers/isdn/hysdn/hysdn # ISDN4Linux: Driver for HYSDN cards + kernel/drivers/isdn/i4l/isdn_bsdcomp # ISDN4Linux: BSD Compression for PPP over ISDN + kernel/drivers/isdn/i4l/isdn # ISDN4Linux: link layer ++isa kernel/drivers/isdn/icn/icn + kernel/drivers/isdn/mISDN/l1oip # mISDN layer1 over IP + kernel/drivers/isdn/mISDN/mISDN_core # mISDN core + kernel/drivers/isdn/mISDN/mISDN_dsp # mISDN DSP core ++isa kernel/drivers/isdn/pcbit/pcbit ++isa kernel/drivers/isdn/sc/sc + kernel/drivers/leds/led-class + kernel/drivers/leds/leds-clevo-mail + kernel/drivers/leds/leds-gpio + kernel/drivers/leds/leds-net48xx + kernel/drivers/leds/leds-pca9532 + kernel/drivers/leds/leds-pca955x + kernel/drivers/leds/leds-wrap + kernel/drivers/leds/ledtrig-default-on + kernel/drivers/leds/ledtrig-heartbeat + kernel/drivers/leds/ledtrig-timer + kernel/drivers/lguest/lg +- kernel/drivers/macintosh/mol/mol +- 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 + kernel/drivers/md/dm-mirror # device-mapper mirror target ++base kernel/drivers/md/dm-mod # device-mapper driver + 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-round-robin # Round-robin path selector + kernel/drivers/md/dm-least-pending + kernel/drivers/md/dm-queue-length # Queue-lenght oriented dynamic load balancer + kernel/drivers/md/dm-service-time # Service-time oriented dynamic load balancer + kernel/drivers/md/dm-snapshot # device-mapper snapshot target + kernel/drivers/md/dm-zero # device-mapper dummy target returning zeros + kernel/drivers/md/faulty + kernel/drivers/md/linear +- kernel/drivers/md/multipath # Replaced by dm-multipath + kernel/drivers/md/md-mod + kernel/drivers/md/raid0 + kernel/drivers/md/raid1 + kernel/drivers/md/raid10 + kernel/drivers/md/raid456 + kernel/drivers/md/raid6_pq + kernel/drivers/media/common/ir-common + kernel/drivers/media/common/saa7146 # driver for generic saa7146-based hardware + kernel/drivers/media/common/saa7146_vv # video4linux driver for saa7146-based hardware + kernel/drivers/media/common/tuners/mt2060 + kernel/drivers/media/common/tuners/mt20xx + kernel/drivers/media/common/tuners/mt2131 + kernel/drivers/media/common/tuners/mt2266 + kernel/drivers/media/common/tuners/mxl5005s + kernel/drivers/media/common/tuners/mxl5007t + kernel/drivers/media/common/tuners/qt1010 + kernel/drivers/media/common/tuners/tda18271 + kernel/drivers/media/common/tuners/tda827x + kernel/drivers/media/common/tuners/tda8290 + kernel/drivers/media/common/tuners/tda9887 + kernel/drivers/media/common/tuners/tea5761 + kernel/drivers/media/common/tuners/tea5767 + kernel/drivers/media/common/tuners/tuner-simple + kernel/drivers/media/common/tuners/tuner-types + kernel/drivers/media/common/tuners/tuner-xc2028 + kernel/drivers/media/common/tuners/xc5000 +- kernel/drivers/media/dvb/b2c2/b2c2-flexcop +- kernel/drivers/media/dvb/b2c2/b2c2-flexcop-pci +- kernel/drivers/media/dvb/b2c2/b2c2-flexcop-usb +- kernel/drivers/media/dvb/bt8xx/bt878 +- kernel/drivers/media/dvb/bt8xx/dst_ca +- kernel/drivers/media/dvb/bt8xx/dst # DST DVB-S Frontend +- kernel/drivers/media/dvb/bt8xx/dvb-bt8xx # Bt8xx based DVB adapter driver +- kernel/drivers/media/dvb/cinergyT2/cinergyT2 +- kernel/drivers/media/dvb/dvb-core/dvb-core # DVB Core Driver +- kernel/drivers/media/dvb/dvb-usb/dvb-usb +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-a800 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-af9005 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-anysee +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-au6610 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-cxusb +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-dib0700 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mb +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mc +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-digitv +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-dtt200u +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-dw2102 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-gl861 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-gp8psk +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-m920x +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-nova-t-usb2 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-opera +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-ttusb2 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-umt-010 +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp702x +- kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp7045 +- kernel/drivers/media/dvb/frontends/au8522 +- kernel/drivers/media/dvb/frontends/bcm3510 # Support for the Broadcom BCM3510 ATSC demodulator - 1st generation Air2PC +- kernel/drivers/media/dvb/frontends/cx22700 +- kernel/drivers/media/dvb/frontends/cx22702 # CX22702 / Thomson DTT 759x / Thomson DTT 7579 PLL DVB Frontend driver +- kernel/drivers/media/dvb/frontends/cx24110 # DVB Frontend driver module for the Conexant cx24108/cx24110 chipset +- kernel/drivers/media/dvb/frontends/cx24123 # Conexant cx24123/cx24109 - DVB QPSK Satellite demod/tuner driver +- kernel/drivers/media/dvb/frontends/dib0070 +- kernel/drivers/media/dvb/frontends/dib3000mb # DiBcom 3000-MB DVB-T frontend +- kernel/drivers/media/dvb/frontends/dib3000mc +- kernel/drivers/media/dvb/frontends/dib7000m +- kernel/drivers/media/dvb/frontends/dib7000p +- kernel/drivers/media/dvb/frontends/dibx000_common +- kernel/drivers/media/dvb/frontends/drx397xD +- kernel/drivers/media/dvb/frontends/dvb-pll +- kernel/drivers/media/dvb/frontends/isl6405 +- kernel/drivers/media/dvb/frontends/isl6421 +- kernel/drivers/media/dvb/frontends/itd1000 +- kernel/drivers/media/dvb/frontends/l64781 +- kernel/drivers/media/dvb/frontends/lgdt330x # Support for LGDT3302 and LGDT3303 - VSB/QAM +- kernel/drivers/media/dvb/frontends/lnbp21 +- kernel/drivers/media/dvb/frontends/mt312 # MT312 Satellite Channel Decoder Driver +- kernel/drivers/media/dvb/frontends/mt352 # DVB-T MT352 Zarlink +- kernel/drivers/media/dvb/frontends/nxt200x # Support for NXT2002 and NXT2004 - VSB/QAM +- kernel/drivers/media/dvb/frontends/nxt6000 # NxtWave NXT6000 DVB demodulator driver +- kernel/drivers/media/dvb/frontends/or51132 # Support for OR51132 (pcHDTV HD-3000) - VSB/QAM +- kernel/drivers/media/dvb/frontends/or51211 # Support for OR51211 (pcHDTV HD-2000) - VSB +- kernel/drivers/media/dvb/frontends/s5h1409 +- kernel/drivers/media/dvb/frontends/s5h1411 +- kernel/drivers/media/dvb/frontends/s5h1420 # Driver for Samsung S5H1420 QPSK Demodulator +- kernel/drivers/media/dvb/frontends/sp8870 +- kernel/drivers/media/dvb/frontends/sp887x # sp887x DVB-T demodulator driver +- kernel/drivers/media/dvb/frontends/stv0297 +- kernel/drivers/media/dvb/frontends/stv0299 # Universal STV0299/TSA5059/SL1935 DVB Frontend driver +- kernel/drivers/media/dvb/frontends/tda10021 +- kernel/drivers/media/dvb/frontends/tda10023 +- kernel/drivers/media/dvb/frontends/tda10048 +- kernel/drivers/media/dvb/frontends/tda1004x # Philips TDA10045H & TDA10046H DVB-T Frontend +- kernel/drivers/media/dvb/frontends/tda10086 +- kernel/drivers/media/dvb/frontends/tda8083 +- kernel/drivers/media/dvb/frontends/tda826x +- kernel/drivers/media/dvb/frontends/tua6100 +- kernel/drivers/media/dvb/frontends/ves1820 # VES1820 DVB-C frontend driver +- kernel/drivers/media/dvb/frontends/ves1x93 # VES1x93 DVB-S Frontend +- kernel/drivers/media/dvb/frontends/zl10353 +- kernel/drivers/media/dvb/pluto2/pluto2 +- kernel/drivers/media/dvb/siano/sms1xxx +- kernel/drivers/media/dvb/ttpci/budget-av # driver for the SAA7146 based so-called budget PCI DVB w/ analog input (e.g. the KNC cards) +- kernel/drivers/media/dvb/ttpci/budget-ci # driver for the SAA7146 based so-called budget PCI DVB cards w/ CI-module produced by Siemens, Technotrend, Hauppauge +- kernel/drivers/media/dvb/ttpci/budget-core +- kernel/drivers/media/dvb/ttpci/budget # driver for the SAA7146 based so-called budget PCI DVB cards by Siemens, Technotrend, Hauppauge +- kernel/drivers/media/dvb/ttpci/budget-patch # Driver for full TS modified DVB-S SAA7146+AV7110 based so-called Budget Patch cards +- kernel/drivers/media/dvb/ttpci/dvb-ttpci # driver for the SAA7146 based AV110 PCI DVB cards by Siemens, Technotrend, Hauppauge +- kernel/drivers/media/dvb/ttpci/ttpci-eeprom # Decode dvb_net MAC address from EEPROM of PCI DVB cards made by Siemens, Technotrend, Hauppauge +- 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 ++isa kernel/drivers/media/radio/radio-cadet ++isa kernel/drivers/media/radio/radio-gemtek + kernel/drivers/media/radio/radio-gemtek-pci # The video4linux driver for the Gemtek PCI Radio Card + kernel/drivers/media/radio/radio-maestro # Radio driver for the Maestro PCI sound card radio. + kernel/drivers/media/radio/radio-maxiradio # Radio driver for the Guillemot Maxi Radio FM2000 radio. ++isa kernel/drivers/media/radio/radio-rtrack2 ++isa kernel/drivers/media/radio/radio-sf16fmi ++isa kernel/drivers/media/radio/radio-sf16fmr2 + kernel/drivers/media/radio/radio-si470x ++isa kernel/drivers/media/radio/radio-terratec ++isa kernel/drivers/media/radio/radio-trust ++isa kernel/drivers/media/radio/radio-typhoon ++isa kernel/drivers/media/radio/radio-zoltrix + kernel/drivers/media/rc/rc_core + kernel/drivers/media/video/adv7170 # Analog Devices ADV7170 video encoder driver + kernel/drivers/media/video/adv7175 # Analog Devices ADV7175 video encoder driver +- kernel/drivers/media/video/au0828/au0828 # depends on dvb-core + kernel/drivers/media/video/bt819 # Brooktree-819 video decoder driver + kernel/drivers/media/video/bt856 # Brooktree-856A video encoder driver + kernel/drivers/media/video/bt8xx/bttv # bttv - v4l/v4l2 driver module for bt848/878 based cards + kernel/drivers/media/video/btcx-risc # some code shared by bttv and cx88xx drivers + kernel/drivers/media/video/bw-qcam + kernel/drivers/media/video/cafe_ccic + kernel/drivers/media/video/compat_ioctl32 # ioctl32.c: Conversion between 32bit and 64bit native ioctls + kernel/drivers/media/video/cpia2/cpia2 + kernel/drivers/media/video/cpia # V4L-driver for Vision CPiA based cameras + kernel/drivers/media/video/cpia_pp # Parallel port driver for Vision CPiA based cameras + kernel/drivers/media/video/cpia_usb + kernel/drivers/media/video/c-qcam # Colour QuickCam + kernel/drivers/media/video/cs5345 + kernel/drivers/media/video/cs53l32a # cs53l32a (Adaptec AVC-2010 and AVC-2410) i2c ivtv driver +- kernel/drivers/media/video/cx18/cx18 # depends on dvb-core + kernel/drivers/media/video/cx2341x +- kernel/drivers/media/video/cx23885/cx23885 # depends on dvb-core + kernel/drivers/media/video/cx25840/cx25840 # Conexant CX25840 audio/video decoder driver + kernel/drivers/media/video/cx88/cx8800 # v4l2 driver module for cx2388x based TV cards + kernel/drivers/media/video/cx88/cx8802 # mpeg driver for cx2388x based TV cards + kernel/drivers/media/video/cx88/cx88-alsa # ALSA driver for cx2388x + kernel/drivers/media/video/cx88/cx88-blackbird # driver for cx2388x/cx23416 based mpeg encoder cards +- kernel/drivers/media/video/cx88/cx88-dvb # driver for cx2388x based DVB cards +- kernel/drivers/media/video/cx88/cx88-vp3054-i2c # support for the secondary I2C bus of the DNTV Live! DVB-T Pro (VP-3054) + kernel/drivers/media/video/cx88/cx88xx # v4l2 driver module for cx2388x based TV cards + kernel/drivers/media/video/dabusb + kernel/drivers/media/video/em28xx/em28xx # driver for Empia EM2800/EM2820/2840 USB video capture device + kernel/drivers/media/video/em28xx/em28xx-alsa +- kernel/drivers/media/video/em28xx/em28xx-dvb # depends on dvb-core + kernel/drivers/media/video/et61x251/et61x251 + kernel/drivers/media/video/gspca/gspca_conex + kernel/drivers/media/video/gspca/gspca_etoms + kernel/drivers/media/video/gspca/gspca_main + kernel/drivers/media/video/gspca/gspca_mars + kernel/drivers/media/video/gspca/gspca_ov519 + kernel/drivers/media/video/gspca/gspca_pac207 + kernel/drivers/media/video/gspca/gspca_pac7311 + kernel/drivers/media/video/gspca/gspca_sonixb + kernel/drivers/media/video/gspca/gspca_sonixj + kernel/drivers/media/video/gspca/gspca_spca500 + kernel/drivers/media/video/gspca/gspca_spca501 + kernel/drivers/media/video/gspca/gspca_spca505 + kernel/drivers/media/video/gspca/gspca_spca506 + kernel/drivers/media/video/gspca/gspca_spca508 + kernel/drivers/media/video/gspca/gspca_spca561 + kernel/drivers/media/video/gspca/gspca_stk014 + kernel/drivers/media/video/gspca/gspca_sunplus + kernel/drivers/media/video/gspca/gspca_t613 + kernel/drivers/media/video/gspca/gspca_tv8532 + kernel/drivers/media/video/gspca/gspca_vc032x + kernel/drivers/media/video/gspca/gspca_zc3xx + kernel/drivers/media/video/hexium_gemini # video4linux-2 driver for Hexium Gemini frame grabber cards + kernel/drivers/media/video/hexium_orion # video4linux-2 driver for Hexium Orion frame grabber cards + kernel/drivers/media/video/ir-kbd-i2c # input driver for i2c IR remote controls + kernel/drivers/media/video/ivtv/ivtvfb + kernel/drivers/media/video/ivtv/ivtv + kernel/drivers/media/video/ks0127 + 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' + kernel/drivers/media/video/ov511 # ov511 USB Camera Driver + kernel/drivers/media/video/ov7670 + kernel/drivers/media/video/ovcamchip/ovcamchip # OV camera chip I2C driver + kernel/drivers/media/video/pms +- kernel/drivers/media/video/pvrusb2/pvrusb2 # depends on dvb-core + kernel/drivers/media/video/pwc/pwc # Philips webcam driver + kernel/drivers/media/video/s2255drv + kernel/drivers/media/video/saa5246a + kernel/drivers/media/video/saa5249 + kernel/drivers/media/video/saa6588 # Philips SAA6588 RDS decoder + kernel/drivers/media/video/saa7110 # Philips SAA7110 video decoder driver + kernel/drivers/media/video/saa7115 # Philips SAA7111/13/14/15/18 video decoder driver + kernel/drivers/media/video/saa7127 # Philips SAA7127/SAA7129 video encoder driver + kernel/drivers/media/video/saa7134/saa6752hs # device driver for saa6752hs MPEG2 encoder + kernel/drivers/media/video/saa7134/saa7134 # v4l2 driver module for saa7130/34 based TV cards + kernel/drivers/media/video/saa7134/saa7134-alsa # ALSA driver for saa7134 +- kernel/drivers/media/video/saa7134/saa7134-dvb + kernel/drivers/media/video/saa7134/saa7134-empress + kernel/drivers/media/video/saa717x + kernel/drivers/media/video/saa7185 # Philips SAA7185 video encoder driver + kernel/drivers/media/video/se401 + kernel/drivers/media/video/sh_mobile_ceu_camera + kernel/drivers/media/video/sn9c102/sn9c102 + kernel/drivers/media/video/soc_camera + kernel/drivers/media/video/soc_camera_platform + kernel/drivers/media/video/stkwebcam + kernel/drivers/media/video/stradis + kernel/drivers/media/video/stv680 # STV0680 USB Camera Driver + kernel/drivers/media/video/tda7432 # bttv driver for the tda7432 audio processor chip + kernel/drivers/media/video/tda9840 + kernel/drivers/media/video/tda9875 + kernel/drivers/media/video/tea6415c + kernel/drivers/media/video/tea6420 + kernel/drivers/media/video/tuner # device driver for various TV and TV+FM radio tuners + kernel/drivers/media/video/tvaudio # device driver for various i2c TV sound decoder / audiomux chips + kernel/drivers/media/video/tveeprom + kernel/drivers/media/video/tvp5150 # Texas Instruments TVP5150A(M) video decoder driver + kernel/drivers/media/video/upd64031a + kernel/drivers/media/video/upd64083 + kernel/drivers/media/video/usbvideo/ibmcam # IBM/Xirlink C-it USB Camera Driver + kernel/drivers/media/video/usbvideo/konicawc # Konica Webcam driver + kernel/drivers/media/video/usbvideo/quickcam_messenger + kernel/drivers/media/video/usbvideo/ultracam + kernel/drivers/media/video/usbvideo/usbvideo + kernel/drivers/media/video/usbvideo/vicam # ViCam WebCam Driver + kernel/drivers/media/video/usbvision/usbvision + kernel/drivers/media/video/uvc/uvcvideo + kernel/drivers/media/video/v4l1-compat # v4l(1) compatibility layer for v4l2 drivers. + kernel/drivers/media/video/v4l2-common # misc helper functions for v4l2 device drivers + kernel/drivers/media/video/v4l2-compat-ioctl32 + kernel/drivers/media/video/v4l2-int-device + kernel/drivers/media/video/videobuf-core + kernel/drivers/media/video/videobuf-dma-contig + kernel/drivers/media/video/videobuf-dma-sg +- kernel/drivers/media/video/videobuf-dvb # depends on dvb-core + kernel/drivers/media/video/videobuf-vmalloc + kernel/drivers/media/video/videocodec # Intermediate API module for video codecs + kernel/drivers/media/video/videodev # Device registrar for Video4Linux drivers + kernel/drivers/media/video/vivi + kernel/drivers/media/video/vp27smpx + kernel/drivers/media/video/vpx3220 # vpx3220a/vpx3216b/vpx3214c video encoder driver + kernel/drivers/media/video/w9966 # Winbond w9966cf WebCam driver + kernel/drivers/media/video/w9968cf # V4L driver for W996[87]CF JPEG USB Dual Mode Camera Chip + kernel/drivers/media/video/wm8739 + kernel/drivers/media/video/wm8775 + kernel/drivers/media/video/zc0301/zc0301 + kernel/drivers/media/video/zr36016 + kernel/drivers/media/video/zr36050 + kernel/drivers/media/video/zr36060 + kernel/drivers/media/video/zr36067 + kernel/drivers/media/video/zr364xx + kernel/drivers/memstick/core/memstick + kernel/drivers/memstick/core/mspro_block + kernel/drivers/memstick/host/jmb38x_ms + kernel/drivers/memstick/host/tifm_ms + kernel/drivers/message/fusion/mptbase # Fusion MPT base driver + kernel/drivers/message/fusion/mptctl # Fusion MPT misc device (ioctl) driver + kernel/drivers/message/fusion/mptfc + kernel/drivers/message/fusion/mptlan # Fusion MPT LAN driver + kernel/drivers/message/fusion/mptsas + kernel/drivers/message/fusion/mptscsih # Fusion MPT SCSI Host driver + kernel/drivers/message/fusion/mptspi +- kernel/drivers/message/i2o/i2o_block # Unsupported - bug #176735 + kernel/drivers/message/i2o/i2o_bus + kernel/drivers/message/i2o/i2o_config + kernel/drivers/message/i2o/i2o_core + kernel/drivers/message/i2o/i2o_proc +- kernel/drivers/message/i2o/i2o_scsi # Unsupported - bug #176735 + kernel/drivers/mfd/mfd-core + kernel/drivers/mfd/htc-pasic3 + kernel/drivers/mfd/sm501 + kernel/drivers/mfd/ucb1400_core + kernel/drivers/misc/acer-wmi + kernel/drivers/misc/asus-laptop + kernel/drivers/misc/compal-laptop + kernel/drivers/misc/eeepc-laptop + kernel/drivers/misc/eeprom_93cx6 + kernel/drivers/misc/enclosure + kernel/drivers/misc/fujitsu-laptop + kernel/drivers/misc/hpilo + kernel/drivers/misc/hp-wmi + kernel/drivers/misc/ibmasm/ibmasm # IBM ASM Service Processor Driver + kernel/drivers/misc/intel_menlow + kernel/drivers/misc/ioc4 + kernel/drivers/misc/lkdtm + kernel/drivers/misc/msi-laptop + kernel/drivers/misc/phantom + kernel/drivers/misc/sgi-gru/gru + kernel/drivers/misc/sgi-xp/xp + kernel/drivers/misc/sgi-xp/xpc + kernel/drivers/misc/sgi-xp/xpnet + kernel/drivers/misc/sony-laptop + kernel/drivers/misc/tc1100-wmi + kernel/drivers/misc/thinkpad_acpi + kernel/drivers/misc/tifm_7xx1 + kernel/drivers/misc/tifm_core + kernel/drivers/mmc/card/mmc_block + kernel/drivers/mmc/card/mmc_test + kernel/drivers/mmc/card/sdio_uart + kernel/drivers/mmc/core/mmc_core + kernel/drivers/mmc/host/mmc_spi + kernel/drivers/mmc/host/ricoh_mmc + kernel/drivers/mmc/host/sdhci + kernel/drivers/mmc/host/sdhci-pci + kernel/drivers/mmc/host/sdricoh_cs + kernel/drivers/mmc/host/tifm_sd + kernel/drivers/mmc/host/wbsd +- kernel/drivers/mtd/ar7part +- kernel/drivers/mtd/chips/cfi_cmdset_0001 # MTD chip driver for Intel/Sharp flash chips +- kernel/drivers/mtd/chips/cfi_cmdset_0002 # MTD chip driver for AMD/Fujitsu flash chips +- kernel/drivers/mtd/chips/cfi_cmdset_0020 +- kernel/drivers/mtd/chips/cfi_probe # Probe code for CFI-compliant flash chips +- kernel/drivers/mtd/chips/cfi_util +- kernel/drivers/mtd/chips/chipreg +- kernel/drivers/mtd/chips/chipreg # Core routines for registering and invoking MTD chip drivers +- kernel/drivers/mtd/chips/gen_probe # Helper routines for flash chip probe code +- kernel/drivers/mtd/chips/jedec_probe # Probe code for JEDEC-compliant flash chips +- kernel/drivers/mtd/chips/map_absent # Placeholder MTD chip driver for 'absent' chips +- kernel/drivers/mtd/devices/block2mtd +- kernel/drivers/mtd/devices/doc2000 # MTD driver for DiskOnChip 2000 and Millennium +- kernel/drivers/mtd/devices/doc2001 # Alternative driver for DiskOnChip Millennium +- kernel/drivers/mtd/devices/doc2001plus # Driver for DiskOnChip Millennium Plus +- kernel/drivers/mtd/devices/docecc # ECC code for correcting errors detected by DiskOnChip 2000 and Millennium ECC hardware +- kernel/drivers/mtd/devices/docprobe # Probe code for DiskOnChip 2000 and Millennium devices +- kernel/drivers/mtd/devices/mtdram # Simulated MTD driver for testing +- kernel/drivers/mtd/devices/phram # MTD driver for physical RAM +- kernel/drivers/mtd/devices/pmc551 + kernel/drivers/mtd/devices/ps3vram # Sony PS3 use video card RAM ; supported to get it out of kernel-extra +- kernel/drivers/mtd/devices/slram # MTD driver for uncached system RAM +- kernel/drivers/mtd/maps/amd76xrom # MTD map driver for BIOS chips on the AMD76X southbridge +- kernel/drivers/mtd/maps/ck804xrom +- kernel/drivers/mtd/maps/dilnetpc # MTD map driver for SSV DIL/NetPC DNP & ADNP +- kernel/drivers/mtd/maps/esb2rom +- kernel/drivers/mtd/maps/ichxrom # MTD map driver for BIOS chips on the ICHX southbridge +- kernel/drivers/mtd/maps/intel_vr_nor +- kernel/drivers/mtd/maps/l440gx # MTD map driver for BIOS chips on Intel L440GX motherboards +- kernel/drivers/mtd/maps/map_funcs +- kernel/drivers/mtd/maps/netsc520 # MTD map driver for AMD NetSc520 Demonstration Board +- kernel/drivers/mtd/maps/nettel # SnapGear/SecureEdge FLASH support +- kernel/drivers/mtd/maps/pci # Generic PCI map driver +- kernel/drivers/mtd/maps/physmap # Generic configurable MTD map driver +- kernel/drivers/mtd/maps/sbc_gxx # MTD map driver for SBC-GXm and SBC-GX1 series boards +- kernel/drivers/mtd/maps/sc520cdp # MTD map driver for AMD SC520 Customer Development Platform +- kernel/drivers/mtd/maps/scb2_flash # MTD map driver for Intel SCB2 BIOS Flash +- kernel/drivers/mtd/maps/scx200_docflash # NatSemi SCx200 DOCCS Flash Driver +- kernel/drivers/mtd/maps/ts5500_flash + # supported to get them out of kernel-extra, for ps3vram + kernel/drivers/mtd/mtd + kernel/drivers/mtd/mtd_blkdevs # Common interface to block layer for MTD 'translation layers' + kernel/drivers/mtd/mtdblock # Caching read/erase/writeback block device emulation access to MTD devices + # +- kernel/drivers/mtd/mtdblock_ro +- kernel/drivers/mtd/mtdchar # Direct character-device access to MTD devices +- kernel/drivers/mtd/mtdconcat # Generic support for concatenating of MTD devices +- kernel/drivers/mtd/mtdoops +- kernel/drivers/mtd/nand/alauda +- kernel/drivers/mtd/nand/cafe_nand +- kernel/drivers/mtd/nand/cs553x_nand +- kernel/drivers/mtd/nand/diskonchip # M-Systems DiskOnChip 2000, Millennium and Millennium Plus device driver +- kernel/drivers/mtd/nand/nand +- kernel/drivers/mtd/nand/nand_ecc +- kernel/drivers/mtd/nand/nand_ecc # Generic NAND ECC support +- kernel/drivers/mtd/nand/nand # Generic NAND flash driver code +- kernel/drivers/mtd/nand/nand_ids +- kernel/drivers/mtd/nand/nand_ids # Nand device & manufacturer ID's +- kernel/drivers/mtd/nand/nandsim +- kernel/drivers/mtd/nand/plat_nand +- kernel/drivers/mtd/onenand/onenand +- kernel/drivers/mtd/onenand/onenand_sim +- kernel/drivers/mtd/redboot # Parsing code for RedBoot Flash Image System (FIS) tables +- kernel/drivers/mtd/rfd_ftl +- kernel/drivers/mtd/ubi/ubi ++isa kernel/drivers/net/3c501 ++isa kernel/drivers/net/3c503 ++isa kernel/drivers/net/3c505 ++isa kernel/drivers/net/3c507 ++isa kernel/drivers/net/3c509 ++isa kernel/drivers/net/3c515 + kernel/drivers/net/3c59x # 3Com 3c59x/3c9xx ethernet driver LK1.1.19 10 Nov 2002 + kernel/drivers/net/8139cp # RealTek RTL-8139C+ series 10/100 PCI Ethernet driver + kernel/drivers/net/8139too # RealTek RTL-8139 Fast Ethernet driver ++isa kernel/drivers/net/82596 ++base kernel/drivers/net/8390 + kernel/drivers/net/8390p ++isa kernel/drivers/net/ac3200 + kernel/drivers/net/acenic # AceNIC/3C985/GA620 Gigabit Ethernet driver + kernel/drivers/net/amd8111e # AMD8111 based 10/100 Ethernet Controller. Driver Version 3.0.3 ++isa kernel/drivers/net/appletalk/cops + kernel/drivers/net/appletalk/ipddp ++isa kernel/drivers/net/appletalk/ltpc + kernel/drivers/net/arcnet/arcnet + kernel/drivers/net/arcnet/arc-rawmode + kernel/drivers/net/arcnet/arc-rimi + kernel/drivers/net/arcnet/capmode + kernel/drivers/net/arcnet/com20020 + kernel/drivers/net/arcnet/com20020-isa + kernel/drivers/net/arcnet/com20020-pci + kernel/drivers/net/arcnet/com90io + kernel/drivers/net/arcnet/com90xx + kernel/drivers/net/arcnet/rfc1051 + kernel/drivers/net/arcnet/rfc1201 ++isa kernel/drivers/net/at1700 + kernel/drivers/net/atl1e/atl1e + kernel/drivers/net/atlx/atl1 + kernel/drivers/net/atlx/atl2 ++isa kernel/drivers/net/atp + kernel/drivers/net/b44 # Broadcom 4400 10/100 PCI ethernet driver + kernel/drivers/net/benet/be2net # Emulex / ServerEngines 10Gb Ethernet Driver + kernel/drivers/net/bmac # PowerMac onboard ethernet, for older PCI macs + kernel/drivers/net/bna/bna # Broadcom 10Gb Ethernet Driver + kernel/drivers/net/bnx2 # Broadcom NX2 network driver + kernel/drivers/net/bnx2x + kernel/drivers/net/bonding/bonding # Ethernet Channel Bonding Driver, v2.6.0 + kernel/drivers/net/bsd_comp + kernel/drivers/net/can/vcan +- kernel/drivers/net/cassini +- kernel/drivers/net/chelsio/cxgb # Chelsio 10Gb Ethernet Driver + kernel/drivers/net/cnic ++isa kernel/drivers/net/cs89x0 + kernel/drivers/net/cxgb3/cxgb3 ++isa kernel/drivers/net/de600 ++isa kernel/drivers/net/de620 ++isa kernel/drivers/net/depca + kernel/drivers/net/dl2k # D-Link DL2000-based Gigabit Ethernet Adapter + kernel/drivers/net/dummy + kernel/drivers/net/e1000/e1000 # Intel(R) PRO/1000 Network Driver + kernel/drivers/net/e1000e/e1000e # Intel(R) PRO/1000 PCIe Network Driver + kernel/drivers/net/e100 # Intel(R) PRO/100 Network Driver ++isa kernel/drivers/net/e2100 ++isa kernel/drivers/net/eepro + kernel/drivers/net/eepro100 # Intel i82557/i82558/i82559 PCI EtherExpressPro driver ++isa kernel/drivers/net/eexpress ++external kernel/drivers/net/ehea/ehea # IBM pSeries HostEthernetAdapter Driver + kernel/drivers/net/enc28j60 + kernel/drivers/net/enic/enic + kernel/drivers/net/epic100 # SMC 83c170 EPIC series Ethernet driver + kernel/drivers/net/eql ++isa kernel/drivers/net/eth16i ++isa kernel/drivers/net/ewrk3 + kernel/drivers/net/fealnx # Myson MTD-8xx 100/10M Ethernet PCI Adapter Driver + kernel/drivers/net/fec_mpc52xx # for Efika mpc52xx + kernel/drivers/net/fec_mpc52xx_phy # for Efika mpc52xx + kernel/drivers/net/forcedeth # Reverse Engineered nForce ethernet driver + kernel/drivers/net/hamachi # Packet Engines 'Hamachi' GNIC-II Gigabit Ethernet driver +- kernel/drivers/net/hamradio/6pack # 6pack driver for AX.25 +- kernel/drivers/net/hamradio/baycom_epp +- kernel/drivers/net/hamradio/baycom_par # Baycom par96 and picpar amateur radio modem driver +- kernel/drivers/net/hamradio/baycom_ser_fdx # Baycom ser12 full duplex amateur radio modem driver +- kernel/drivers/net/hamradio/baycom_ser_hdx # Baycom ser12 half duplex amateur radio modem driver +- kernel/drivers/net/hamradio/bpqether # Transmit and receive AX.25 packets over Ethernet +- kernel/drivers/net/hamradio/hdlcdrv # Packet Radio network interface HDLC encoder/decoder +- kernel/drivers/net/hamradio/mkiss # KISS driver for AX.25 over TTYs ++isa kernel/drivers/net/hamradio/scc +- kernel/drivers/net/hamradio/yam # Yam amateur radio modem driver ++isa kernel/drivers/net/hp + kernel/drivers/net/hp100 # HP CASCADE Architecture Driver for 100VG-AnyLan Network Adapters ++isa kernel/drivers/net/hp-plus ++external kernel/drivers/net/ibmveth # IBM eServer i/pSeries Virtual Ethernet Device Driver + kernel/drivers/net/ifb # IMQ replacement + kernel/drivers/net/igb/igb # Intel Gigabit Ethernet driver + kernel/drivers/net/igbvf/igbvf # Intel Gigabit Ethernet SR-IOV driver + kernel/drivers/net/ipg + kernel/drivers/net/irda/act200l-sir # ACTiSYS ACT-IR200L dongle driver + kernel/drivers/net/irda/actisys-sir # ACTiSYS IR-220L and IR-220L+ dongle driver ++isa kernel/drivers/net/irda/ali-ircc + kernel/drivers/net/irda/donauboe + kernel/drivers/net/irda/esi-sir # Extended Systems JetEye PC dongle driver + kernel/drivers/net/irda/girbil-sir # Greenwich GIrBIL dongle driver + kernel/drivers/net/irda/irda-usb # IrDA-USB Dongle Driver + kernel/drivers/net/irda/irtty-sir # IrDA TTY device driver + kernel/drivers/net/irda/kingsun-sir + kernel/drivers/net/irda/ks959-sir + kernel/drivers/net/irda/ksdazzle-sir + kernel/drivers/net/irda/litelink-sir # Parallax Litelink dongle driver + kernel/drivers/net/irda/ma600-sir # MA600 dongle driver version 0.1 + kernel/drivers/net/irda/mcp2120-sir # Microchip MCP2120 + kernel/drivers/net/irda/mcs7780 ++isa kernel/drivers/net/irda/nsc-ircc + kernel/drivers/net/irda/old_belkin-sir # Belkin (old) SmartBeam dongle driver + kernel/drivers/net/irda/sir-dev # IrDA SIR core ++isa kernel/drivers/net/irda/smsc-ircc2 + kernel/drivers/net/irda/stir4200 # IrDA-USB Dongle Driver for SigmaTel STIr4200 + kernel/drivers/net/irda/tekram-sir # Tekram IrMate IR-210B dongle driver + kernel/drivers/net/irda/toim3232-sir ++isa kernel/drivers/net/irda/via-ircc + kernel/drivers/net/irda/vlsi_ir # IrDA SIR/MIR/FIR driver for VLSI 82C147 ++isa kernel/drivers/net/irda/w83977af_ir ++external kernel/drivers/net/iseries_veth # IBM legacy iSeries virtual ethernet + kernel/drivers/net/ixgbe/ixgbe # Intel(R) PRO/10GbE PCI Express Network Driver + kernel/drivers/net/ixgb/ixgb # Intel(R) PRO/10GbE Network Driver ++isa kernel/drivers/net/lance ++isa kernel/drivers/net/lp486e + kernel/drivers/net/mace # PowerMac onboard ethernet, first PCI Macs + 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 ++isa kernel/drivers/net/ne ++base kernel/drivers/net/ne2k-pci # PCI NE2000 clone driver + kernel/drivers/net/netconsole # Console driver for network interfaces + kernel/drivers/net/netxen/netxen_nic ++isa kernel/drivers/net/ni52 ++isa kernel/drivers/net/ni65 + kernel/drivers/net/niu + kernel/drivers/net/ns83820 # National Semiconductor DP83820 10/100/1000 driver + kernel/drivers/net/pcmcia/3c574_cs # 3Com 3c574 series PCMCIA ethernet driver + kernel/drivers/net/pcmcia/3c589_cs # 3Com 3c589 series PCMCIA ethernet driver + kernel/drivers/net/pcmcia/axnet_cs # Asix AX88190 PCMCIA ethernet driver + kernel/drivers/net/pcmcia/com20020_cs + kernel/drivers/net/pcmcia/fmvj18x_cs # fmvj18x and compatible PCMCIA ethernet driver + kernel/drivers/net/pcmcia/ibmtr_cs + kernel/drivers/net/pcmcia/nmclan_cs # New Media PCMCIA ethernet driver + kernel/drivers/net/pcmcia/pcnet_cs # NE2000 compatible PCMCIA ethernet driver + kernel/drivers/net/pcmcia/smc91c92_cs # SMC 91c92 series PCMCIA ethernet driver + kernel/drivers/net/pcmcia/xirc2ps_cs # Xircom PCMCIA ethernet driver + kernel/drivers/net/pcnet32 # Driver for PCnet32 and PCnetPCI based ethercards + kernel/drivers/net/phy/broadcom + kernel/drivers/net/phy/cicada + kernel/drivers/net/phy/davicom + kernel/drivers/net/phy/icplus + kernel/drivers/net/phy/libphy + kernel/drivers/net/phy/lxt + kernel/drivers/net/phy/marvell + kernel/drivers/net/mdio + kernel/drivers/net/phy/mdio-bitbang + kernel/drivers/net/phy/mdio-ofgpio + kernel/drivers/net/phy/qsemi + kernel/drivers/net/phy/realtek + kernel/drivers/net/phy/smsc + kernel/drivers/net/phy/vitesse + kernel/drivers/net/plip + kernel/drivers/net/ppp_async + kernel/drivers/net/ppp_deflate + kernel/drivers/net/ppp_generic + kernel/drivers/net/ppp_mppe + kernel/drivers/net/ppp_synctty + kernel/drivers/net/pppoe # PPP over Ethernet driver + kernel/drivers/net/pppol2tp + kernel/drivers/net/pppox # PPP over Ethernet driver (generic socket layer) + kernel/drivers/net/ps3_gelic + kernel/drivers/net/qla3xxx + kernel/drivers/net/qlge/qlge # QLogic 10 Gb Ethernet driver + kernel/drivers/net/r6040 + kernel/drivers/net/r8169 # RealTek RTL-8169 Gigabit Ethernet driver + kernel/drivers/net/rrunner # Essential RoadRunner HIPPI driver + kernel/drivers/net/s2io ++isa kernel/drivers/net/sb1000 + kernel/drivers/net/sc92031 ++isa kernel/drivers/net/seeq8005 + kernel/drivers/net/sfc/sfc ++external kernel/drivers/net/sfc/sfc_resource/sfc_resource + kernel/drivers/net/sis190 # SiS SiS190 Gigabit Ethernet driver + kernel/drivers/net/sis900 # SiS 900 PCI Fast Ethernet driver + kernel/drivers/net/skfp/skfp + kernel/drivers/net/skge # New driver for Marvell Yukon chipset and SysKonnect Gigabit + kernel/drivers/net/sky2 # New driver for Marvell Yukon 2 chipset + kernel/drivers/net/slhc + kernel/drivers/net/slip ++isa kernel/drivers/net/smc9194 ++isa kernel/drivers/net/smc-ultra ++external kernel/drivers/net/spidernet # IBM Cell spidernet + kernel/drivers/net/starfire # Adaptec Starfire Ethernet driver + kernel/drivers/net/sundance # Sundance Alta Ethernet driver + kernel/drivers/net/sungem_phy + kernel/drivers/net/sungem # Sun GEM Gbit ethernet driver, used in PowerMacs + kernel/drivers/net/sunhme + kernel/drivers/net/tehuti + kernel/drivers/net/tg3 # Broadcom Tigon3 ethernet driver + kernel/drivers/net/tlan + kernel/drivers/net/tokenring/3c359 # 3Com 3C359 Velocity XL Token Ring Adapter Driver + kernel/drivers/net/tokenring/abyss ++isa kernel/drivers/net/tokenring/ibmtr + kernel/drivers/net/tokenring/lanstreamer + kernel/drivers/net/tokenring/olympic # Olympic PCI/Cardbus Chipset Driver ++isa kernel/drivers/net/tokenring/proteon ++isa kernel/drivers/net/tokenring/skisa ++isa kernel/drivers/net/tokenring/smctr + kernel/drivers/net/tokenring/tms380tr + kernel/drivers/net/tokenring/tmspci + kernel/drivers/net/tulip/de2104x # Intel/Digital 21040/1 series PCI Ethernet driver + kernel/drivers/net/tulip/de4x5 + kernel/drivers/net/tulip/dmfe # Davicom DM910X fast ethernet driver + kernel/drivers/net/tulip/tulip # Digital 21*4* Tulip ethernet driver + kernel/drivers/net/tulip/uli526x + kernel/drivers/net/tulip/winbond-840 # Winbond W89c840 Ethernet driver + kernel/drivers/net/tulip/xircom_cb # Xircom Cardbus ethernet driver + kernel/drivers/net/tun + kernel/drivers/net/typhoon # 3Com Typhoon Family (3C990, 3CR990, and variants) + kernel/drivers/net/usb/asix # ASIX AX8817X based USB 2.0 Ethernet Devices + kernel/drivers/net/usb/catc # CATC EL1210A NetMate USB Ethernet driver + kernel/drivers/net/usb/cdc_ether # CDC Ethernet based networking peripherals + kernel/drivers/net/usb/cdc_subset # Simple "CDC Subset" USB Networking Links + kernel/drivers/net/usb/dm9601 # Davicom DM9601 usb network device + kernel/drivers/net/usb/gl620a # GeneSys GL620USB-A based links + kernel/drivers/net/usb/hso # Option High Speed Modem device + kernel/drivers/net/usb/kaweth # KL5USB101 USB Ethernet driver + kernel/drivers/net/usb/mcs7830 # Moschips MCS7830 based USB 2.0 Ethernet Devices + kernel/drivers/net/usb/net1080 # Net1080 based USB host-to-host cables + kernel/drivers/net/usb/pegasus # Pegasus/Pegasus II USB Ethernet driver + kernel/drivers/net/usb/plusb # PL-2301/2302 USB host-to-host link cables + kernel/drivers/net/usb/rndis_host # Host Side support for RNDIS Networking Links + kernel/drivers/net/usb/rtl8150 # rtl8150 based usb-ethernet driver + kernel/drivers/net/usb/usbnet # USB Host-to-Host Link Drivers (numerous vendors) + kernel/drivers/net/usb/zaurus # Zaurus USB link ++external kernel/drivers/net/veth # IBM pSeries virtual ethernet + kernel/drivers/net/via-rhine # VIA Rhine PCI Fast Ethernet driver + 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 + kernel/drivers/net/wan/hdlc + kernel/drivers/net/wan/hdlc_cisco + kernel/drivers/net/wan/hdlc_fr +- kernel/drivers/net/wan/hdlc_ppp + kernel/drivers/net/wan/hdlc_raw + kernel/drivers/net/wan/hdlc_raw_eth +- kernel/drivers/net/wan/hdlc_x25 ++isa kernel/drivers/net/wan/hostess_sv11 +- kernel/drivers/net/wan/lapbether +- kernel/drivers/net/wan/lmc/lmc ++isa kernel/drivers/net/wan/n2 +- kernel/drivers/net/wan/pc300 +- kernel/drivers/net/wan/pc300too +- kernel/drivers/net/wan/pci200syn ++isa kernel/drivers/net/wan/sdla ++isa kernel/drivers/net/wan/sealevel +- kernel/drivers/net/wan/syncppp +- kernel/drivers/net/wan/wanxl +- kernel/drivers/net/wan/x25_asy ++isa kernel/drivers/net/wan/z85230 ++isa kernel/drivers/net/wd + kernel/drivers/net/wireless/adm8211 + 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/hermes # Low-level driver helper for Lucent Hermes chipset and Prism II HFA384x wireless MAC controller + kernel/drivers/net/wireless/iwlwifi/iwl3945 + kernel/drivers/net/wireless/iwlwifi/iwlagn + kernel/drivers/net/wireless/iwlwifi/iwlcore + kernel/drivers/net/wireless/libertas/libertas + kernel/drivers/net/wireless/libertas/libertas_cs + kernel/drivers/net/wireless/libertas/libertas_sdio + kernel/drivers/net/wireless/libertas/usb8xxx + kernel/drivers/net/wireless/mac80211_hwsim + kernel/drivers/net/wireless/netwave_cs + 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 + kernel/drivers/net/wireless/orinoco_tmd # Driver for wireless LAN cards using the TMD7160 PCI bridge + kernel/drivers/net/wireless/p54/p54common + 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/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/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/yellowfin # Packet Engines Yellowfin G-NIC Gigabit Ethernet driver ++isa kernel/drivers/net/znet + kernel/drivers/parport/parport + kernel/drivers/parport/parport_ax88796 + kernel/drivers/parport/parport_cs # PCMCIA parallel port card driver + kernel/drivers/parport/parport_pc # PC-style parallel port driver + kernel/drivers/parport/parport_serial # Driver for common parallel+serial multi-I/O PCI cards + kernel/drivers/pci/hotplug/acpiphp # ACPI Hot Plug PCI Controller Driver + kernel/drivers/pci/hotplug/acpiphp_ibm # ACPI Hot Plug PCI Controller Driver IBM extension +- kernel/drivers/pci/hotplug/cpcihp_generic # Generic port I/O CompactPCI Hot Plug Driver +- kernel/drivers/pci/hotplug/cpcihp_zt5550 # ZT5550 CompactPCI Hot Plug Driver + kernel/drivers/pci/hotplug/cpqphp # Compaq PCI Hotplug driver +- kernel/drivers/pci/hotplug/fakephp # Fake PCI Hot Plug Controller Driver + kernel/drivers/pci/hotplug/ibmphp # IBM's PCI Hotplug Controller Driver + kernel/drivers/pci/hotplug/pciehp # PCI Express Hot Plug Controller Driver + 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/pci-iomul # PCI I/O port multiplexer interface + kernel/drivers/pci/pcie/aer/aer_inject # fate #306815 + kernel/drivers/pcmcia/i82092 ++isa kernel/drivers/pcmcia/i82365 + kernel/drivers/pcmcia/pcmcia + kernel/drivers/pcmcia/pcmcia_core # Linux Kernel Card Services + kernel/drivers/pcmcia/pcmcia_rsrc + kernel/drivers/pcmcia/pd6729 # Driver for the Cirrus PD6729 PCI-PCMCIA bridge + kernel/drivers/pcmcia/rsrc_nonstatic + kernel/drivers/pcmcia/tcic # Databook TCIC-2 PCMCIA socket driver + kernel/drivers/pcmcia/yenta_socket +- kernel/drivers/power/ds2760_battery # depends on wire and w1_ds2760 + kernel/drivers/power/olpc_battery + kernel/drivers/power/pda_power + kernel/drivers/power/power_supply + kernel/drivers/ps3/ps3-lpm # Sony PS3 + kernel/drivers/ps3/ps3stor_lib # Sony PS3 + kernel/drivers/rtc/rtc-cmos + kernel/drivers/rtc/rtc-core + kernel/drivers/rtc/rtc-ds1305 + kernel/drivers/rtc/rtc-ds1307 + kernel/drivers/rtc/rtc-ds1374 + kernel/drivers/rtc/rtc-ds1511 + kernel/drivers/rtc/rtc-ds1553 + kernel/drivers/rtc/rtc-ds1672 + kernel/drivers/rtc/rtc-ds1742 + kernel/drivers/rtc/rtc-efi + kernel/drivers/rtc/rtc-fm3130 + kernel/drivers/rtc/rtc-isl1208 + kernel/drivers/rtc/rtc-lib + kernel/drivers/rtc/rtc-m41t80 + kernel/drivers/rtc/rtc-m41t94 + kernel/drivers/rtc/rtc-m48t59 + kernel/drivers/rtc/rtc-m48t86 + kernel/drivers/rtc/rtc-max6900 + kernel/drivers/rtc/rtc-max6902 + kernel/drivers/rtc/rtc-pcf8563 + kernel/drivers/rtc/rtc-pcf8583 + kernel/drivers/rtc/rtc-ppc + kernel/drivers/rtc/rtc-r9701 + kernel/drivers/rtc/rtc-rs5c348 + kernel/drivers/rtc/rtc-rs5c372 + kernel/drivers/rtc/rtc-s35390a + kernel/drivers/rtc/rtc-stk17ta8 + kernel/drivers/rtc/rtc-test + kernel/drivers/rtc/rtc-v3020 + kernel/drivers/rtc/rtc-x1205 + kernel/drivers/s390/block/dasd_diag_mod + kernel/drivers/s390/block/dasd_eckd_mod + kernel/drivers/s390/block/dasd_fba_mod + kernel/drivers/s390/block/dasd_mod + kernel/drivers/s390/block/dcssblk + kernel/drivers/s390/block/xpram + kernel/drivers/s390/char/fs3270 + kernel/drivers/s390/char/monreader + kernel/drivers/s390/char/monwriter + kernel/drivers/s390/char/raw3270 + kernel/drivers/s390/char/sclp_async + kernel/drivers/s390/char/sclp_cpi + kernel/drivers/s390/char/tape + kernel/drivers/s390/char/tape_34xx + kernel/drivers/s390/char/tape_3590 + kernel/drivers/s390/char/tape_class + kernel/drivers/s390/char/tty3270 + kernel/drivers/s390/char/vmcp + kernel/drivers/s390/char/vmlogrdr + kernel/drivers/s390/char/vmur + kernel/drivers/s390/char/vmwatchdog + kernel/drivers/s390/char/zcore_mod + kernel/drivers/s390/cio/ccwgroup + kernel/drivers/s390/cio/chsc_sch + kernel/drivers/s390/cio/qdio + kernel/drivers/s390/crypto/z90crypt +- kernel/drivers/s390/net/claw # ESCON CLAW driver + kernel/drivers/s390/net/ctcm + kernel/drivers/s390/net/cu3088 + kernel/drivers/s390/net/fsm + kernel/drivers/s390/net/lcs + kernel/drivers/s390/net/netiucv + kernel/drivers/s390/net/qeth + kernel/drivers/s390/net/qeth_l2 + kernel/drivers/s390/net/qeth_l3 + kernel/drivers/s390/net/smsgiucv + kernel/drivers/s390/scsi/zfcp + kernel/drivers/scsi/3w-9xxx # 3ware 9000 Storage Controller Linux Driver + kernel/drivers/scsi/3w-xxxx # 3ware Storage Controller Linux Driver +- kernel/drivers/scsi/a100u2w # Initio INI-A100U2W + kernel/drivers/scsi/aacraid/aacraid # Dell PERC2, 2/Si, 3/Si, 3/Di, Adaptec Advanced Raid Products, and HP NetRAID-4M SCSI driver +- kernel/drivers/scsi/advansys # Advansys driver, rewrite not yet finished ++isa kernel/drivers/scsi/aha152x ++isa kernel/drivers/scsi/aha1542 + kernel/drivers/scsi/aic7xxx/aic79xx # Adaptec Aic790X U320 SCSI Host Bus Adapter driver + kernel/drivers/scsi/aic7xxx/aic7xxx # Adaptec Aic77XX/78XX SCSI Host Bus Adapter driver +- kernel/drivers/scsi/aic7xxx_old + kernel/drivers/scsi/aic94xx/aic94xx + kernel/drivers/scsi/arcmsr/arcmsr # Areca RAID HBA + kernel/drivers/scsi/atp870u ++base kernel/drivers/scsi/BusLogic + kernel/drivers/scsi/be2iscsi/be2iscsi + kernel/drivers/scsi/bfa/bfa + kernel/drivers/scsi/bnx2i/bnx2i + kernel/drivers/scsi/ch # device driver for scsi media changer devices + kernel/drivers/scsi/cxgbi/libcxgbi + kernel/drivers/scsi/cxgb3i/cxgb3i # Chelsio S3 iSCSI initiator driver + kernel/drivers/scsi/dc395x # SCSI host adapter driver for Tekram TRM-S1040 based adapters: Tekram DC395 and DC315 series + kernel/drivers/scsi/device_handler/scsi_dh + kernel/drivers/scsi/device_handler/scsi_dh_alua + kernel/drivers/scsi/device_handler/scsi_dh_emc + kernel/drivers/scsi/device_handler/scsi_dh_hp_sw + kernel/drivers/scsi/device_handler/scsi_dh_rdac + kernel/drivers/scsi/dmx3191d + kernel/drivers/scsi/dpt_i2o ++isa kernel/drivers/scsi/dtc + kernel/drivers/scsi/eata # EATA/DMA SCSI Driver + kernel/drivers/scsi/fcoe/fcoe # Open-FCoE software driver + kernel/drivers/scsi/fcoe/libfcoe + kernel/drivers/scsi/fdomain # Future domain SCSI driver + kernel/drivers/scsi/fnic/fnic + kernel/drivers/scsi/gdth ++isa kernel/drivers/scsi/g_NCR5380 ++isa kernel/drivers/scsi/g_NCR5380_mmio + kernel/drivers/scsi/hpsa # HP Smart Array + kernel/drivers/scsi/hptiop ++external kernel/drivers/scsi/ibmvscsi/ibmvfc # IBM pSeries virtual fibrechannel ++external kernel/drivers/scsi/ibmvscsi/ibmvscsic # IBM pSeries vscsi client ++external kernel/drivers/scsi/ibmvscsi/ibmvstgt # IBM pSeries vscsi server + kernel/drivers/scsi/ide-scsi + kernel/drivers/scsi/imm ++isa kernel/drivers/scsi/in2000 +- kernel/drivers/scsi/initio # INITIO 9100 ++external kernel/drivers/scsi/ipr # IBM pSeries storage driver + kernel/drivers/scsi/ips + kernel/drivers/scsi/iscsi_boot_sysfs + kernel/drivers/scsi/iscsi_tcp # open-iscsi client + kernel/drivers/scsi/libfc/libfc # Library module for FC devices + kernel/drivers/scsi/libiscsi # open-iscsi library + kernel/drivers/scsi/libiscsi_tcp + kernel/drivers/scsi/libsas/libsas # Library module for SAS devices + kernel/drivers/scsi/libsrp # Library module for SRP devices + kernel/drivers/scsi/lpfc/lpfc + kernel/drivers/scsi/mac53c94 # PowerMac onboard scsi, early PCI Macs + kernel/drivers/scsi/megaraid # LSI Logic MegaRAID driver + kernel/drivers/scsi/megaraid/megaraid_mbox # LSI Logic MegaRAID Mailbox Driver + kernel/drivers/scsi/megaraid/megaraid_mm + kernel/drivers/scsi/megaraid/megaraid_sas + kernel/drivers/scsi/mesh # PowerMac onboard scsi, early PCI Macs + kernel/drivers/scsi/mpt2sas/mpt2sas + kernel/drivers/scsi/mvsas ++isa kernel/drivers/scsi/NCR53c406a + kernel/drivers/scsi/nsp32 +- kernel/drivers/scsi/osd/libosd +- kernel/drivers/scsi/osd/osd + kernel/drivers/scsi/osst # OnStream {DI-|FW-|SC-|USB}{30|50} Tape Driver ++isa kernel/drivers/scsi/pas16 + kernel/drivers/scsi/pcmcia/aha152x_cs + kernel/drivers/scsi/pcmcia/fdomain_cs # Future Domain PCMCIA SCSI driver + kernel/drivers/scsi/pcmcia/nsp_cs + kernel/drivers/scsi/pcmcia/qlogic_cs # Driver for the PCMCIA Qlogic FAS SCSI controllers + kernel/drivers/scsi/pcmcia/sym53c500_cs # SYM53C500 PCMCIA SCSI driver + kernel/drivers/scsi/pmcraid + kernel/drivers/scsi/ppa + kernel/drivers/scsi/ps3rom # Sony PS3 ROM update + kernel/drivers/scsi/qla1280 # Qlogic ISP SCSI (qla1x80/qla1x160) driver + kernel/drivers/scsi/qla2xxx/qla2xxx # QLogic Fibre Channel HBA Driver + kernel/drivers/scsi/qla4xxx/qla4xxx ++isa kernel/drivers/scsi/qlogicfas + kernel/drivers/scsi/qlogicfas408 # Driver for the Qlogic FAS SCSI controllers + kernel/drivers/scsi/raid_class # implementation of a simple raid visualisation class + kernel/drivers/scsi/scsi_debug # SCSI debug adapter driver ++base kernel/drivers/scsi/scsi_mod # SCSI core + kernel/drivers/scsi/scsi_tgt # SCSI Target Mode framework + kernel/drivers/scsi/scsi_transport_fc # FC Transport Attributes + kernel/drivers/scsi/scsi_transport_iscsi + kernel/drivers/scsi/scsi_transport_sas # Serial Attached SCSI (SAS) transport class + kernel/drivers/scsi/scsi_transport_spi # SPI Transport Attributes + kernel/drivers/scsi/scsi_transport_srp # SRP Transport Attributes + kernel/drivers/scsi/scsi_wait_scan # SCSI wait for scanning module ++base kernel/drivers/scsi/sd_mod # SCSI disk (sd) driver + kernel/drivers/scsi/ses # SCSI Enclosure Services Driver ++base kernel/drivers/scsi/sg # SCSI generic (sg) driver ++base kernel/drivers/scsi/sr_mod + kernel/drivers/scsi/stex # SCSI Tape Driver ++base kernel/drivers/scsi/st # SCSI Tape Driver ++isa kernel/drivers/scsi/sym53c416 + kernel/drivers/scsi/sym53c8xx_2/sym53c8xx ++isa kernel/drivers/scsi/t128 + kernel/drivers/scsi/tmscsim # SCSI host adapter driver for Tekram DC390 and other AMD53C974A based PCI SCSI adapters ++isa kernel/drivers/scsi/u14-34f ++isa kernel/drivers/scsi/ultrastor ++isa kernel/drivers/scsi/wd7000 + kernel/drivers/serial/8250 + kernel/drivers/serial/8250_accent + kernel/drivers/serial/8250_boca + kernel/drivers/serial/8250_exar_st16c554 + kernel/drivers/serial/8250_fourport + kernel/drivers/serial/8250_hub6 + kernel/drivers/serial/8250_pci + kernel/drivers/serial/8250_pnp + kernel/drivers/serial/icom + kernel/drivers/serial/ioc3_serial + kernel/drivers/serial/ioc4_serial + kernel/drivers/serial/jsm/jsm + kernel/drivers/serial/kgdboc + kernel/drivers/serial/serial_core + kernel/drivers/serial/serial_cs + kernel/drivers/sn/ioc3 + kernel/drivers/spi/at25 +- kernel/drivers/spi/spi_bitbang +- kernel/drivers/spi/spi_butterfly +- kernel/drivers/spi/spi_lm70llp +- kernel/drivers/spi/spidev +- kernel/drivers/spi/tle62x0 + kernel/drivers/ssb/ssb +- kernel/drivers/telephony/ixj_pcmcia +- kernel/drivers/telephony/ixj # Quicknet VoIP Telephony card module - www.quicknet.net +- kernel/drivers/telephony/phonedev + kernel/drivers/thermal/thermal_sys # Generic thermal zone interface + kernel/drivers/uio/uio + kernel/drivers/uio/uio_aec + kernel/drivers/uio/uio_cif + kernel/drivers/uio/uio_pci_generic + kernel/drivers/uio/uio_pdrv + kernel/drivers/uio/uio_pdrv_genirq + kernel/drivers/uio/uio_sercos3 + kernel/drivers/uio/uio_smx +- kernel/drivers/usb/atm/cxacru # driver for USB ADSL modems based on Conexant AccessRunner chipset + kernel/drivers/usb/atm/speedtch +- kernel/drivers/usb/atm/ueagle-atm + kernel/drivers/usb/atm/usbatm # Generic USB xDSL driver core +- kernel/drivers/usb/atm/xusbatm # dumb usbatm-based driver for modems initialized in userspace + kernel/drivers/usb/c67x00/c67x00 + kernel/drivers/usb/class/cdc-acm # USB Abstract Control Model driver for USB modems and ISDN adapters + kernel/drivers/usb/class/cdc-wdm + kernel/drivers/usb/class/usblp # USB Printer Device Class driver + kernel/drivers/usb/class/usbtmc # USB test and measurement driver ++base kernel/drivers/usb/core/usbcore ++base kernel/drivers/usb/host/ehci-hcd # 2003-Dec-29 USB 2.0 'Enhanced' Host Controller (EHCI) Driver +- kernel/drivers/usb/host/hwa-hc +- kernel/drivers/usb/host/isp1362-hcd +- kernel/drivers/usb/host/isp116x-hcd # ISP116x HCD (Host Controller Driver) for USB +- kernel/drivers/usb/host/isp1760 ++base kernel/drivers/usb/host/ohci-hcd # 2004 Feb 02 USB 1.1 'Open' Host Controller (OHCI) Driver +- kernel/drivers/usb/host/oxu210hp-hcd + kernel/drivers/usb/host/r8a66597-hcd +- kernel/drivers/usb/host/sl811_cs # PCMCIA driver for SL811HS (as found in REX-CFU1U) +- kernel/drivers/usb/host/sl811-hcd +- kernel/drivers/usb/host/u132-hcd ++base kernel/drivers/usb/host/uhci-hcd # USB Universal Host Controller Interface driver +- kernel/drivers/usb/host/whci/whci-hcd ++base kernel/drivers/usb/host/xhci-hcd + kernel/drivers/usb/image/mdc800 # USB Driver for Mustek MDC800 Digital Camera + kernel/drivers/usb/image/microtek # Microtek Scanmaker X6 USB scanner driver + kernel/drivers/usb/misc/adutux + kernel/drivers/usb/misc/appledisplay + kernel/drivers/usb/misc/berry_charge + kernel/drivers/usb/misc/cypress_cy7c63 + kernel/drivers/usb/misc/cytherm + kernel/drivers/usb/misc/emi26 # Emagic EMI 2|6 firmware loader. + kernel/drivers/usb/misc/emi62 # Emagic EMI 6|2m firmware loader. + kernel/drivers/usb/misc/ftdi-elan + kernel/drivers/usb/misc/idmouse + kernel/drivers/usb/misc/iowarrior + kernel/drivers/usb/misc/isight_firmware + kernel/drivers/usb/misc/ldusb # Generic USB driver for report based interrupt in/out devices + kernel/drivers/usb/misc/legousbtower # LEGO USB Tower Driver + kernel/drivers/usb/misc/rio500 # USB Rio 500 driver +- kernel/drivers/usb/misc/sisusbvga/sisusbvga # driver for SiS315(E) based USB2VGA dongles + kernel/drivers/usb/misc/trancevibrator + kernel/drivers/usb/misc/usblcd # USBLCD Driver Version 1.04 + kernel/drivers/usb/misc/usbled # USB LED Driver + kernel/drivers/usb/misc/uss720 # USB Parport Cable driver for Cables using the Lucent Technologies USS720 Chip + kernel/drivers/usb/misc/usbsevseg +- kernel/drivers/usb/misc/usbtest + kernel/drivers/usb/misc/vstusb +- kernel/drivers/usb/mon/usbmon # The USB Monitor + kernel/drivers/usb/serial/aircable + kernel/drivers/usb/serial/ark3116 + kernel/drivers/usb/serial/belkin_sa # USB Belkin Serial converter driver + kernel/drivers/usb/serial/ch341 + kernel/drivers/usb/serial/cp210x # Silicon Laboratories CP2101/CP2102 USB to RS232 serial adaptor driver + kernel/drivers/usb/serial/cyberjack # REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver + kernel/drivers/usb/serial/cypress_m8 + kernel/drivers/usb/serial/digi_acceleport # Digi AccelePort USB-2/USB-4 Serial Converter driver + kernel/drivers/usb/serial/empeg # USB Empeg Mark I/II Driver + kernel/drivers/usb/serial/ftdi_sio # USB FTDI Serial Converters Driver + kernel/drivers/usb/serial/funsoft # USB Fundamental Software Dongle Driver + kernel/drivers/usb/serial/garmin_gps + kernel/drivers/usb/serial/hp4x # HP4x Calculators Serial USB driver + kernel/drivers/usb/serial/io_edgeport # Edgeport USB Serial Driver + kernel/drivers/usb/serial/io_ti # Edgeport USB Serial Driver + kernel/drivers/usb/serial/ipaq # USB PocketPC PDA driver + kernel/drivers/usb/serial/ipw + kernel/drivers/usb/serial/ir-usb # USB IR Dongle driver + kernel/drivers/usb/serial/iuu_phoenix + kernel/drivers/usb/serial/keyspan # Keyspan USB to Serial Converter Driver + kernel/drivers/usb/serial/keyspan_pda # USB Keyspan PDA Converter driver + kernel/drivers/usb/serial/kl5kusb105 # KLSI KL5KUSB105 chipset USB->Serial Converter driver + kernel/drivers/usb/serial/kobil_sct # KOBIL USB Smart Card Terminal Driver (experimental) + kernel/drivers/usb/serial/mct_u232 # Magic Control Technology USB-RS232 converter driver + kernel/drivers/usb/serial/mos7720 + kernel/drivers/usb/serial/mos7840 + kernel/drivers/usb/serial/moto_modem + kernel/drivers/usb/serial/navman # USB Navman GPS device + kernel/drivers/usb/serial/omninet # USB ZyXEL omni.net LCD PLUS Driver + kernel/drivers/usb/serial/opticon + kernel/drivers/usb/serial/option # USB Wireless modems + kernel/drivers/usb/serial/oti6858 + kernel/drivers/usb/serial/pl2303 # Prolific PL2303 USB to serial adaptor driver + kernel/drivers/usb/serial/qcserial + kernel/drivers/usb/serial/safe_serial # USB Safe Encapsulated Serial + kernel/drivers/usb/serial/siemens_mpi + kernel/drivers/usb/serial/sierra # USB Sierra Wireless Modems + kernel/drivers/usb/serial/spcp8x5 + kernel/drivers/usb/serial/symbolserial + kernel/drivers/usb/serial/ti_usb_3410_5052 + kernel/drivers/usb/serial/usb_debug + kernel/drivers/usb/serial/usb_wwan + kernel/drivers/usb/serial/usbserial # USB Serial Driver core + kernel/drivers/usb/serial/visor # USB HandSpring Visor / Palm OS driver + kernel/drivers/usb/serial/whiteheat # USB ConnectTech WhiteHEAT driver ++base kernel/drivers/usb/storage/usb-storage # USB Mass Storage driver for Linux ++base kernel/drivers/usb/storage/ums-alauda ++base kernel/drivers/usb/storage/ums-cypress ++base kernel/drivers/usb/storage/ums-datafab ++base kernel/drivers/usb/storage/ums-freecom ++base kernel/drivers/usb/storage/ums-isd200 ++base kernel/drivers/usb/storage/ums-jumpshot ++base kernel/drivers/usb/storage/ums-karma ++base kernel/drivers/usb/storage/ums-onetouch ++base kernel/drivers/usb/storage/ums-sddr09 ++base kernel/drivers/usb/storage/ums-sddr55 ++base kernel/drivers/usb/storage/ums-usbat +- kernel/drivers/usb/wusbcore/wusb-cbaf +- kernel/drivers/usb/wusbcore/wusb-wa +- kernel/drivers/usb/wusbcore/wusbcore + +- kernel/drivers/video/arcfb # FB driver for Arc monochrome LCD board + kernel/drivers/video/arkfb + kernel/drivers/video/aty/aty128fb # FBDev driver for ATI Rage128 / Pro cards + kernel/drivers/video/aty/atyfb + kernel/drivers/video/aty/radeonfb # framebuffer driver for ATI Radeon chipset + kernel/drivers/video/backlight/backlight + kernel/drivers/video/backlight/corgi_bl + kernel/drivers/video/backlight/cr_bllcd + kernel/drivers/video/backlight/ili9320 + kernel/drivers/video/backlight/lcd + kernel/drivers/video/backlight/ltv350qv + kernel/drivers/video/backlight/mbp_nvidia_bl + kernel/drivers/video/backlight/platform_lcd + kernel/drivers/video/backlight/progear_bl + kernel/drivers/video/backlight/vgg2432a4 + kernel/drivers/video/carminefb + kernel/drivers/video/cfbcopyarea + kernel/drivers/video/cfbfillrect + kernel/drivers/video/cirrusfb # Accelerated FBDev driver for Cirrus Logic chips + kernel/drivers/video/console/mdacon + kernel/drivers/video/cyber2000fb # CyberPro 2000, 2010 and 5000 framebuffer driver + kernel/drivers/video/cyblafb # Frame buffer driver for Trident Cyberblade/i1 graphics core + kernel/drivers/video/display/display + kernel/drivers/video/fb_ddc + kernel/drivers/video/fb_sys_fops + kernel/drivers/video/geode/gx1fb # Geode framebuffer driver + kernel/drivers/video/geode/gxfb + kernel/drivers/video/geode/lxfb + kernel/drivers/video/hecubafb + kernel/drivers/video/hgafb # FBDev driver for Hercules Graphics Adaptor + kernel/drivers/video/i810/i810fb # Framebuffer device for the Intel 810/815 and compatible cards + kernel/drivers/video/intelfb/intelfb + kernel/drivers/video/kyro/kyrofb + kernel/drivers/video/macmodes # Standard MacOS video modes + kernel/drivers/video/matrox/g450_pll # Matrox G450/G550 PLL driver + kernel/drivers/video/matrox/i2c-matroxfb # Support module providing I2C buses present on Matrox videocards + kernel/drivers/video/matrox/matroxfb_accel + kernel/drivers/video/matrox/matroxfb_base # Accelerated FBDev driver for Matrox Millennium/Mystique/G100/G200/G400/G450/G550 + kernel/drivers/video/matrox/matroxfb_crtc2 # Matrox G400 CRTC2 driver + kernel/drivers/video/matrox/matroxfb_DAC1064 + kernel/drivers/video/matrox/matroxfb_g450 # Matrox G450/G550 output driver + kernel/drivers/video/matrox/matroxfb_maven # Matrox G200/G400 Matrox MGA-TVO driver + kernel/drivers/video/matrox/matroxfb_misc # Miscellaneous support for Matrox video cards + kernel/drivers/video/matrox/matroxfb_Ti3026 + kernel/drivers/video/neofb # FBDev driver for NeoMagic PCI Chips + kernel/drivers/video/nvidia/nvidiafb # NVidia framebuffer + kernel/drivers/video/output + kernel/drivers/video/pm2fb + kernel/drivers/video/pm3fb + kernel/drivers/video/riva/rivafb # Framebuffer driver for nVidia Riva 128, TNT, TNT2, and the GeForce series +- kernel/drivers/video/s1d13xxxfb # Epson S1D13xxx series framebuffer chips + kernel/drivers/video/s3fb + kernel/drivers/video/savage/savagefb + kernel/drivers/video/sis/sisfb # SiS 300/540/630/730/315/550/650/651/661/740/741/330/760 framebuffer driver + kernel/drivers/video/sm501fb + kernel/drivers/video/sstfb # FBDev driver for 3dfx Voodoo Graphics and Voodoo2 based video boards + kernel/drivers/video/svgalib + kernel/drivers/video/syscopyarea + kernel/drivers/video/sysfillrect + kernel/drivers/video/sysimgblt + kernel/drivers/video/tdfxfb # 3Dfx framebuffer device driver + kernel/drivers/video/tridentfb # Framebuffer driver for Trident cards + kernel/drivers/video/uvesafb + kernel/drivers/video/vermilion/crvml + kernel/drivers/video/vermilion/vmlfb + kernel/drivers/video/vfb + kernel/drivers/video/vga16fb + kernel/drivers/video/vgastate # VGA State Save/Restore + kernel/drivers/video/vt8623fb + kernel/drivers/virtio/virtio + kernel/drivers/virtio/virtio_balloon + kernel/drivers/virtio/virtio_pci + kernel/drivers/virtio/virtio_ring +- kernel/drivers/w1/masters/ds2482 +- kernel/drivers/w1/masters/ds2490 +- kernel/drivers/w1/masters/matrox_w1 # Driver for transport(Dallas 1-wire prtocol) over VGA DDC(matrox gpio). +- kernel/drivers/w1/masters/w1-gpio +- kernel/drivers/w1/slaves/w1_ds2433 # w1 family 23 (DS2433) driver +- kernel/drivers/w1/slaves/w1_ds2760 +- kernel/drivers/w1/slaves/w1_smem # Driver for 1-wire Dallas network protocol, 64bit memory family. +- kernel/drivers/w1/slaves/w1_therm # Driver for 1-wire Dallas network protocol, temperature family. +- kernel/drivers/w1/wire # Driver for 1-wire Dallas network protocol. + kernel/drivers/watchdog/acquirewdt # Acquire Inc. Single Board Computer Watchdog Timer driver + kernel/drivers/watchdog/advantechwdt # Advantech Single Board Computer WDT driver + kernel/drivers/watchdog/alim1535_wdt # ALi M1535 PMU Watchdog Timer driver + kernel/drivers/watchdog/alim7101_wdt # ALi M7101 PMU Computer Watchdog Timer driver + kernel/drivers/watchdog/cpu5wdt # sma cpu5 watchdog driver + kernel/drivers/watchdog/eurotechwdt # Driver for Eurotech CPU-1220/1410 on board watchdog + kernel/drivers/watchdog/hpwdt + kernel/drivers/watchdog/i6300esb # Watchdog timer driver for Intel 6300ESB chipset + kernel/drivers/watchdog/iTCO_vendor_support + kernel/drivers/watchdog/iTCO_wdt + kernel/drivers/watchdog/ib700wdt # IB700 SBC watchdog driver + kernel/drivers/watchdog/ibmasr # IBM Automatic Server Restart driver + kernel/drivers/watchdog/it8712f_wdt + kernel/drivers/watchdog/machzwd # MachZ ZF-Logic Watchdog driver ++isa kernel/drivers/watchdog/mixcomwd + kernel/drivers/watchdog/pc87413_wdt ++isa kernel/drivers/watchdog/pcwd + kernel/drivers/watchdog/pcwd_pci # Berkshire PCI-PC Watchdog driver + kernel/drivers/watchdog/pcwd_usb # Berkshire USB-PC Watchdog driver + kernel/drivers/watchdog/sbc60xxwdt # 60xx Single Board Computer Watchdog Timer driver + kernel/drivers/watchdog/sbc7240_wdt ++review kernel/drivers/watchdog/sbc8360 # SBC8360 Watchdog driver +- kernel/drivers/watchdog/sbc_epx_c3 # A Hardware Watchdog Device for the Winsystems EPX-C3 single board computer + kernel/drivers/watchdog/sc1200wdt # Driver for National Semiconductor PC87307/PC97307 watchdog component + kernel/drivers/watchdog/sc520_wdt # Driver for watchdog timer in AMD "Elan" SC520 uProcessor + kernel/drivers/watchdog/scx200_wdt # NatSemi SCx200 Watchdog Driver + kernel/drivers/watchdog/smsc37b787_wdt + kernel/drivers/watchdog/softdog # Software Watchdog Device Driver + kernel/drivers/watchdog/w83627hf_wdt # w38627hf WDT driver + kernel/drivers/watchdog/w83697hf_wdt + kernel/drivers/watchdog/w83877f_wdt # Driver for watchdog timer in w83877f chip ++review kernel/drivers/watchdog/w83977f_wdt # W83977F Watchdog Timer Driver for Winbond W83977F I/O Chip + kernel/drivers/watchdog/wafer5823wdt # ICP Wafer 5823 Single Board Computer WDT driver +- kernel/drivers/watchdog/wdrtas # watchdog for RTAS on pSeries JS20 ++isa kernel/drivers/watchdog/wdt + kernel/drivers/watchdog/wdt_pci # Driver for the ICS PCI-WDT500/501 watchdog cards + kernel/drivers/watchdog/xen_wdt # Xen pv watchdog driver + kernel/drivers/xen/blkback/blkbk # Xen block device backend + kernel/drivers/xen/blkback/blkback-pagemap ++base kernel/drivers/xen/blkfront/xenblk # Xen block device frontend + kernel/drivers/xen/blktap/blktap + kernel/drivers/xen/blktap2/blktap2 + kernel/drivers/xen/blktap2/blktap2-new + kernel/drivers/xen/core/domctl + kernel/drivers/xen/evtchn + kernel/drivers/xen/gntdev/gntdev + kernel/drivers/xen/netback/netbk # Xen network device backend +- kernel/drivers/xen/netback/netloop # Xen network loopback device ++base kernel/drivers/xen/netfront/xennet # Xen network device frontend + kernel/drivers/xen/pciback/pciback # Xen PCI device backend + kernel/drivers/xen/scsiback/xen-scsibk + kernel/drivers/xen/scsifront/xenscsi ++external kernel/drivers/xen/sfc_netback/sfc_netback ++external kernel/drivers/xen/sfc_netback/sfc_netfront ++external kernel/drivers/xen/sfc_netutil/sfc_netutil + kernel/drivers/xen/tpmback/tpmbk # Xen TPM device backend + kernel/drivers/xen/usbback/usbbk + kernel/drivers/xen/usbfront/xen-hcd + kernel/drivers/xen/xenbus/xenbus_be # Xen XenBus backend driver support module + kernel/fs/9p/9p +- kernel/fs/adfs/adfs +- kernel/fs/affs/affs # Amiga filesystem support for Linux +- kernel/fs/afs/kafs # AFS Client File System + kernel/fs/autofs4/autofs4 + kernel/fs/autofs/autofs +- kernel/fs/befs/befs # BeOS File System (BeFS) driver +- kernel/fs/bfs/bfs # SCO UnixWare BFS filesystem for Linux + kernel/fs/binfmt_aout + kernel/fs/binfmt_misc ++external kernel/fs/cifs/cifs # VFS to access servers complying with the SNIA CIFS Specification e.g. Samba and Windows; supported by IBM +- kernel/fs/coda/coda + kernel/fs/configfs/configfs + kernel/fs/cramfs/cramfs +- kernel/fs/dlm/dlm # fs/dlm is provided separately in the ocfs2 KMP package + kernel/fs/dmapi/dmapi + kernel/fs/ecryptfs/ecryptfs +- kernel/fs/efs/efs + kernel/fs/exportfs/exportfs + kernel/fs/ext2/ext2 # Second Extended Filesystem ++base kernel/fs/ext3/ext3 # Second Extended Filesystem with journaling extensions +- kernel/fs/ext4/ext4 + kernel/fs/fat/fat +- kernel/fs/freevxfs/freevxfs # Veritas Filesystem (VxFS) driver + kernel/fs/fuse/fuse # FUSE: Filesystem in Userspace + kernel/fs/fscache +- kernel/fs/gfs2/gfs2 +- kernel/fs/gfs2/locking/dlm/lock_dlm + kernel/fs/hfs/hfs + kernel/fs/hfsplus/hfsplus # Extended Macintosh Filesystem +- kernel/fs/hpfs/hpfs + kernel/fs/isofs/isofs + kernel/fs/jbd2/jbd2 ++base kernel/fs/jbd/jbd +- kernel/fs/jffs2/jffs2 # The Journalling Flash File System, v2 ++external kernel/fs/jfs/jfs # The Journaled Filesystem (JFS), supported by IBM + kernel/fs/lockd/lockd ++base kernel/fs/mbcache + kernel/fs/minix + kernel/fs/msdos/msdos + kernel/fs/ncpfs/ncpfs + kernel/fs/nfs_common/nfs_acl + kernel/fs/nfsd/nfsd + kernel/fs/nfs/nfs + kernel/fs/nls/nls_ascii + kernel/fs/nls/nls_base + kernel/fs/nls/nls_cp1250 + kernel/fs/nls/nls_cp1251 + kernel/fs/nls/nls_cp1255 + kernel/fs/nls/nls_cp437 + kernel/fs/nls/nls_cp737 + kernel/fs/nls/nls_cp775 + kernel/fs/nls/nls_cp850 + kernel/fs/nls/nls_cp852 + kernel/fs/nls/nls_cp855 + kernel/fs/nls/nls_cp857 + kernel/fs/nls/nls_cp860 + kernel/fs/nls/nls_cp861 + kernel/fs/nls/nls_cp862 + kernel/fs/nls/nls_cp863 + kernel/fs/nls/nls_cp864 + kernel/fs/nls/nls_cp865 + kernel/fs/nls/nls_cp866 + kernel/fs/nls/nls_cp869 + kernel/fs/nls/nls_cp874 + kernel/fs/nls/nls_cp932 + kernel/fs/nls/nls_cp936 + kernel/fs/nls/nls_cp949 + kernel/fs/nls/nls_cp950 + kernel/fs/nls/nls_euc-jp + kernel/fs/nls/nls_iso8859-1 + kernel/fs/nls/nls_iso8859-13 + kernel/fs/nls/nls_iso8859-14 + kernel/fs/nls/nls_iso8859-15 + kernel/fs/nls/nls_iso8859-2 + kernel/fs/nls/nls_iso8859-3 + kernel/fs/nls/nls_iso8859-4 + kernel/fs/nls/nls_iso8859-5 + kernel/fs/nls/nls_iso8859-6 + kernel/fs/nls/nls_iso8859-7 + kernel/fs/nls/nls_iso8859-9 + kernel/fs/nls/nls_koi8-r + kernel/fs/nls/nls_koi8-ru + kernel/fs/nls/nls_koi8-u + kernel/fs/nls/nls_utf8 + kernel/fs/novfs/novfs +# ocfs2 is provided separately in the ocfs2 KMP package +- kernel/fs/ocfs2/cluster/ocfs2_nodemanager +- kernel/fs/ocfs2/dlm/ocfs2_dlm +- kernel/fs/ocfs2/dlm/ocfs2_dlmfs +- kernel/fs/ocfs2/ocfs2 +- kernel/fs/ocfs2/ocfs2_stack_o2cb +- kernel/fs/ocfs2/ocfs2_stack_user +- kernel/fs/ocfs2/ocfs2_stackglue + kernel/fs/omfs/omfs +- kernel/fs/qnx4/qnx4 + kernel/fs/quota_v1 # Old quota format support + kernel/fs/quota_v2 # Quota format v2 support + kernel/fs/quota_tree + kernel/fs/reiserfs/reiserfs # ReiserFS journaled filesystem + kernel/fs/romfs/romfs + kernel/fs/squashfs/squashfs + kernel/fs/sysv/sysv +- kernel/fs/ubifs/ubifs + kernel/fs/udf/udf # Universal Disk Format Filesystem + kernel/fs/ufs/ufs + kernel/fs/vfat/vfat + kernel/fs/xfs/dmapi/xfs_dmapi + kernel/fs/xfs/xfs + kernel/kdb/modules/kdbm_debugtypes + kernel/kdb/modules/kdbm_pg + kernel/kdb/modules/kdbm_sched + kernel/kdb/modules/kdbm_task + kernel/kdb/modules/kdbm_vm + kernel/kdb/modules/kdbm_x86 + kernel/kernel/backtracetest +- kernel/kernel/rcutorture # Read-Copy Update /proc-based torture test facility + kernel/kernel/rwlock_torture + kernel/lib/crc16 + kernel/lib/crc7 + kernel/lib/crc-ccitt + kernel/lib/crc-itu-t + kernel/lib/crc-t10dif # sd_mod depends on this + kernel/lib/libcrc32c + kernel/lib/lzo/lzo_compress + kernel/lib/lzo/lzo_decompress + kernel/lib/reed_solomon/reed_solomon + kernel/lib/ts_bm + kernel/lib/ts_fsm + kernel/lib/ts_kmp + kernel/lib/zlib_deflate/zlib_deflate + kernel/net/8021q/8021q + kernel/net/9p/9pnet + kernel/net/9p/9pnet_virtio + kernel/net/802/fddi + kernel/net/802/garp + kernel/net/802/p8022 + kernel/net/802/p8023 + kernel/net/802/psnap + kernel/net/802/stp + kernel/net/802/tr + kernel/net/appletalk/appletalk # AppleTalk 0.20 +- kernel/net/atm/atm + kernel/net/atm/atm +- kernel/net/atm/br2684 +- kernel/net/atm/clip +- kernel/net/atm/lec +- kernel/net/atm/mpoa +- kernel/net/atm/pppoatm +- kernel/net/ax25/ax25 # The amateur radio AX.25 link layer protocol + kernel/net/bluetooth/bluetooth # Bluetooth Core + kernel/net/bluetooth/bnep/bnep # Bluetooth BNEP + kernel/net/bluetooth/cmtp/cmtp # Bluetooth CMTP + kernel/net/bluetooth/hidp/hidp # Bluetooth HIDP + kernel/net/bluetooth/l2cap # Bluetooth L2CAP + kernel/net/bluetooth/rfcomm/rfcomm # Bluetooth RFCOMM + kernel/net/bluetooth/sco # Bluetooth SCO + kernel/net/bridge/bridge + kernel/net/bridge/netfilter/ebt_802_3 + kernel/net/bridge/netfilter/ebtable_broute + kernel/net/bridge/netfilter/ebtable_filter + kernel/net/bridge/netfilter/ebtable_nat + kernel/net/bridge/netfilter/ebtables + kernel/net/bridge/netfilter/ebt_among + kernel/net/bridge/netfilter/ebt_arp + kernel/net/bridge/netfilter/ebt_arpreply + kernel/net/bridge/netfilter/ebt_dnat + kernel/net/bridge/netfilter/ebt_ip + kernel/net/bridge/netfilter/ebt_ip6 + kernel/net/bridge/netfilter/ebt_limit + kernel/net/bridge/netfilter/ebt_log + kernel/net/bridge/netfilter/ebt_mark + kernel/net/bridge/netfilter/ebt_mark_m + kernel/net/bridge/netfilter/ebt_nflog + kernel/net/bridge/netfilter/ebt_pkttype + kernel/net/bridge/netfilter/ebt_redirect + kernel/net/bridge/netfilter/ebt_snat + kernel/net/bridge/netfilter/ebt_stp + kernel/net/bridge/netfilter/ebt_ulog + kernel/net/bridge/netfilter/ebt_vlan # 802.1Q match module (ebtables extension), v0.6 + kernel/net/can/can + kernel/net/can/can-bcm + kernel/net/can/can-raw + kernel/net/core/pktgen # Packet Generator tool + kernel/net/dcb/dcbnl +- kernel/net/dccp/ccids/dccp_ccid2 +- kernel/net/dccp/ccids/dccp_ccid3 +- kernel/net/dccp/ccids/lib/dccp_tfrc_lib +- kernel/net/dccp/dccp +- kernel/net/dccp/dccp_diag +- kernel/net/dccp/dccp_ipv4 +- kernel/net/dccp/dccp_ipv6 +- kernel/net/dccp/dccp_probe +- kernel/net/decnet/decnet # The Linux DECnet Network Protocol +- kernel/net/decnet/netfilter/dn_rtmsg +- kernel/net/econet/econet + kernel/net/ieee80211/ieee80211 # 802.11 data/management/control stack + kernel/net/ieee80211/ieee80211_crypt_ccmp # Host AP crypt: CCMP + kernel/net/ieee80211/ieee80211_crypt # HostAP crypto + kernel/net/ieee80211/ieee80211_crypt_tkip # Host AP crypt: TKIP + kernel/net/ieee80211/ieee80211_crypt_wep # Host AP crypt: WEP + kernel/net/ipv4/ah4 + kernel/net/ipv4/esp4 + kernel/net/ipv4/inet_diag # Module for monitoring INET transport protocols sockets + kernel/net/ipv4/ipcomp # IP Payload Compression Protocol (IPComp) - RFC3173 + kernel/net/ipv4/gre + kernel/net/ipv4/ip_gre + kernel/net/ipv4/ipip +# provided separately in the cluster-network KMP +- kernel/net/ipv4/ipvs/ip_vs +- kernel/net/ipv4/ipvs/ip_vs_dh +- kernel/net/ipv4/ipvs/ip_vs_ftp +- kernel/net/ipv4/ipvs/ip_vs_lblc +- kernel/net/ipv4/ipvs/ip_vs_lblcr +- kernel/net/ipv4/ipvs/ip_vs_lc +- kernel/net/ipv4/ipvs/ip_vs_nq +- kernel/net/ipv4/ipvs/ip_vs_rr +- kernel/net/ipv4/ipvs/ip_vs_sed +- kernel/net/ipv4/ipvs/ip_vs_sh +- kernel/net/ipv4/ipvs/ip_vs_wlc +- kernel/net/ipv4/ipvs/ip_vs_wrr + kernel/net/ipv4/netfilter/arptable_filter # arptables filter table + kernel/net/ipv4/netfilter/arp_tables # arptables core + kernel/net/ipv4/netfilter/arpt_mangle # arptables arp payload mangle target + kernel/net/ipv4/netfilter/ip_queue # IPv4 packet queue handler + kernel/net/ipv4/netfilter/iptable_filter # iptables filter table + kernel/net/ipv4/netfilter/iptable_mangle # iptables mangle table + kernel/net/ipv4/netfilter/iptable_nat + kernel/net/ipv4/netfilter/iptable_raw + kernel/net/ipv4/netfilter/iptable_security + kernel/net/ipv4/netfilter/ip_tables # IPv4 packet filter + kernel/net/ipv4/netfilter/ipt_addrtype # iptables addrtype match + kernel/net/ipv4/netfilter/ipt_ah # iptables AH SPI match module +# provided separately in the cluster-network KMP +- kernel/net/ipv4/netfilter/ipt_CLUSTERIP + kernel/net/ipv4/netfilter/ipt_ecn # iptables ECN matching module + kernel/net/ipv4/netfilter/ipt_ECN # iptables ECN modification module + net/ipv4/netfilter/ipt_ipv4options # iptables ipv4 options module + kernel/net/ipv4/netfilter/ipt_LOG # iptables syslog logging module + kernel/net/ipv4/netfilter/ipt_MASQUERADE # iptables MASQUERADE target module + kernel/net/ipv4/netfilter/ipt_NETMAP # iptables 1:1 NAT mapping of IP networks target + kernel/net/ipv4/netfilter/ipt_recent # IP tables recently seen matching module v0.3.1 + kernel/net/ipv4/netfilter/ipt_REDIRECT # iptables REDIRECT target module + kernel/net/ipv4/netfilter/ipt_REJECT # iptables REJECT target module + kernel/net/ipv4/netfilter/ipt_ttl # IP tables TTL matching module + kernel/net/ipv4/netfilter/ipt_TTL # IP tables TTL modification module + kernel/net/ipv4/netfilter/ipt_ULOG # iptables userspace logging module + kernel/net/ipv4/netfilter/nf_conntrack_ipv4 + kernel/net/ipv4/netfilter/nf_defrag_ipv4 + kernel/net/ipv4/netfilter/nf_nat_amanda # Amanda NAT helper + kernel/net/ipv4/netfilter/nf_nat_ftp # ftp NAT helper + kernel/net/ipv4/netfilter/nf_nat_h323 + kernel/net/ipv4/netfilter/nf_nat_irc # IRC (DCC) NAT helper + kernel/net/ipv4/netfilter/nf_nat # NAT helper + kernel/net/ipv4/netfilter/nf_nat_pptp # PPtP (Point to Point Tunneling Protocol) NAT helper + kernel/net/ipv4/netfilter/nf_nat_proto_dccp + kernel/net/ipv4/netfilter/nf_nat_proto_gre + kernel/net/ipv4/netfilter/nf_nat_proto_sctp + kernel/net/ipv4/netfilter/nf_nat_proto_udplite + kernel/net/ipv4/netfilter/nf_nat_sip + kernel/net/ipv4/netfilter/nf_nat_snmp_basic # Basic SNMP Application Layer Gateway + kernel/net/ipv4/netfilter/nf_nat_tftp # tftp NAT helper +- kernel/net/ipv4/tcp_bic + kernel/net/ipv4/tcp_diag +- kernel/net/ipv4/tcp_highspeed + kernel/net/ipv4/tcp_illinois + kernel/net/ipv4/tcp_lp + kernel/net/ipv4/tcp_probe +- kernel/net/ipv4/tcp_htcp +- kernel/net/ipv4/tcp_hybla +- kernel/net/ipv4/tcp_scalable +- kernel/net/ipv4/tcp_vegas + kernel/net/ipv4/tcp_veno +- kernel/net/ipv4/tcp_westwood +- kernel/net/ipv4/tcp_yeah # typ_yeah depends on tcp_vegas + kernel/net/ipv4/tunnel4 + kernel/net/ipv4/xfrm4_mode_beet + kernel/net/ipv4/xfrm4_mode_transport + kernel/net/ipv4/xfrm4_mode_tunnel + kernel/net/ipv4/xfrm4_tunnel + kernel/net/ipv6/ah6 + kernel/net/ipv6/esp6 + kernel/net/ipv6/ip6_tunnel # IPv6-in-IPv6 tunnel + kernel/net/ipv6/ipcomp6 # IP Payload Compression Protocol (IPComp) for IPv6 - RFC3173 ++base kernel/net/ipv6/ipv6 # IPv6 protocol stack for Linux + kernel/net/ipv6/mip6 + kernel/net/ipv6/netfilter/ip6_queue # IPv6 packet queue handler + kernel/net/ipv6/netfilter/ip6table_filter # ip6tables filter table + kernel/net/ipv6/netfilter/ip6table_mangle # ip6tables mangle table + kernel/net/ipv6/netfilter/ip6table_raw + kernel/net/ipv6/netfilter/ip6table_security + kernel/net/ipv6/netfilter/ip6_tables # IPv6 packet filter + kernel/net/ipv6/netfilter/ip6t_ah # IPv6 AH match + kernel/net/ipv6/netfilter/ip6t_eui64 # IPv6 EUI64 address checking match + kernel/net/ipv6/netfilter/ip6t_frag # IPv6 FRAG match + kernel/net/ipv6/netfilter/ip6t_hbh # IPv6 HbH match + kernel/net/ipv6/netfilter/ip6t_hl # IP tables Hop Limit matching module + kernel/net/ipv6/netfilter/ip6t_HL # IP tables Hop Limit target module + kernel/net/ipv6/netfilter/ip6t_ipv6header # IPv6 headers match + kernel/net/ipv6/netfilter/ip6t_LOG # IP6 tables LOG target module + kernel/net/ipv6/netfilter/ip6t_REJECT # IP6 tables REJECT target module + kernel/net/ipv6/netfilter/ip6t_mh + kernel/net/ipv6/netfilter/ip6t_rt # IPv6 RT match + kernel/net/ipv6/netfilter/nf_defrag_ipv6 + kernel/net/ipv6/netfilter/nf_conntrack_ipv6 + kernel/net/ipv6/sit + kernel/net/ipv6/tunnel6 + kernel/net/ipv6/xfrm6_mode_beet + kernel/net/ipv6/xfrm6_mode_ro + kernel/net/ipv6/xfrm6_mode_transport + kernel/net/ipv6/xfrm6_mode_tunnel + kernel/net/ipv6/xfrm6_tunnel + kernel/net/ipx/ipx + kernel/net/irda/ircomm/ircomm # IrCOMM protocol + kernel/net/irda/ircomm/ircomm-tty # IrCOMM serial TTY driver + kernel/net/irda/irda # The Linux IrDA Protocol Stack + kernel/net/irda/irlan/irlan # The Linux IrDA LAN protocol + kernel/net/irda/irnet/irnet # IrNET : Synchronous PPP over IrDA + kernel/net/iucv/af_iucv + kernel/net/iucv/iucv + kernel/net/key/af_key +- kernel/net/lapb/lapb # The X.25 Link Access Procedure B link layer protocol + kernel/net/llc/llc +- kernel/net/llc/llc2 # IEEE 802.2 PF_LLC support + kernel/net/mac80211/mac80211 + kernel/net/netfilter/nf_conntrack + kernel/net/netfilter/nf_conntrack_amanda # Amanda connection tracking module + kernel/net/netfilter/nf_conntrack_ftp # ftp connection tracking helper + kernel/net/netfilter/nf_conntrack_h323 + kernel/net/netfilter/nf_conntrack_irc # IRC (DCC) connection tracking helper + kernel/net/netfilter/nf_conntrack_netbios_ns # NetBIOS name service broadcast connection tracking helper + kernel/net/netfilter/nf_conntrack_netlink # Connection tracking via netlink socket + kernel/net/netfilter/nf_conntrack_pptp # PPtP (Point to Point Tunneling Protocol) connection tracking helper + kernel/net/netfilter/nf_conntrack_proto_dccp + kernel/net/netfilter/nf_conntrack_proto_gre + kernel/net/netfilter/nf_conntrack_proto_sctp # Netfilter connection tracking protocol helper for SCTP + kernel/net/netfilter/nf_conntrack_proto_udplite + kernel/net/netfilter/nf_conntrack_sane + kernel/net/netfilter/nf_conntrack_sip + kernel/net/netfilter/nf_conntrack_slp + kernel/net/netfilter/nf_conntrack_tftp # tftp connection tracking helper + kernel/net/netfilter/nfnetlink + kernel/net/netfilter/nfnetlink_log + kernel/net/netfilter/nfnetlink_queue + kernel/net/netfilter/x_tables + kernel/net/netfilter/xt_CLASSIFY + kernel/net/netfilter/xt_comment + kernel/net/netfilter/xt_connbytes + kernel/net/netfilter/xt_connlimit + kernel/net/netfilter/xt_connmark + kernel/net/netfilter/xt_CONNMARK + kernel/net/netfilter/xt_CONNSECMARK + kernel/net/netfilter/xt_conntrack + kernel/net/netfilter/xt_dccp + kernel/net/netfilter/xt_dscp # iptables DSCP matching module + kernel/net/netfilter/xt_DSCP # iptables DSCP modification module + kernel/net/netfilter/xt_esp # iptables ESP SPI match module + kernel/net/netfilter/xt_hashlimit + kernel/net/netfilter/xt_helper + kernel/net/netfilter/xt_iprange + kernel/net/netfilter/xt_length + kernel/net/netfilter/xt_limit + kernel/net/netfilter/xt_mac + kernel/net/netfilter/xt_mark + kernel/net/netfilter/xt_MARK + kernel/net/netfilter/xt_multiport # iptables match for multiple ports + kernel/net/netfilter/xt_NFLOG + kernel/net/netfilter/xt_NFQUEUE + kernel/net/netfilter/xt_NOTRACK + kernel/net/netfilter/xt_owner + kernel/net/netfilter/xt_physdev + kernel/net/netfilter/xt_pkttype + kernel/net/netfilter/xt_policy + kernel/net/netfilter/xt_quota + kernel/net/netfilter/xt_rateest + kernel/net/netfilter/xt_RATEEST + kernel/net/netfilter/xt_realm + kernel/net/netfilter/xt_sctp + kernel/net/netfilter/xt_SECMARK + kernel/net/netfilter/xt_state + kernel/net/netfilter/xt_statistic + kernel/net/netfilter/xt_string + kernel/net/netfilter/xt_tcpmss + kernel/net/netfilter/xt_TCPMSS + kernel/net/netfilter/xt_TCPOPTSTRIP + kernel/net/netfilter/xt_tcpudp + kernel/net/netfilter/xt_time + kernel/net/netfilter/xt_TRACE + kernel/net/netfilter/xt_u32 +- kernel/net/netrom/netrom # The amateur radio NET/ROM network and transport layer protocol ++base kernel/net/packet/af_packet + kernel/net/rfkill/rfkill + kernel/net/rfkill/rfkill-input +- kernel/net/rose/rose # The amateur radio ROSE network layer protocol + kernel/net/rxrpc/af-rxrpc + kernel/net/rxrpc/rxkad +- kernel/net/sched/act_gact +- kernel/net/sched/act_ipt +- kernel/net/sched/act_mirred + kernel/net/sched/act_nat +- kernel/net/sched/act_pedit +- kernel/net/sched/act_police +- kernel/net/sched/act_simple + kernel/net/sched/act_skbedit + kernel/net/sched/cls_basic + kernel/net/sched/cls_flow + kernel/net/sched/cls_fw + kernel/net/sched/cls_route + kernel/net/sched/cls_rsvp + kernel/net/sched/cls_rsvp6 + kernel/net/sched/cls_tcindex + kernel/net/sched/cls_u32 + kernel/net/sched/em_cmp +- kernel/net/sched/em_meta +- kernel/net/sched/em_nbyte +- kernel/net/sched/em_text +- kernel/net/sched/em_u32 + kernel/net/sched/sch_atm + kernel/net/sched/sch_cbq + kernel/net/sched/sch_dsmark + kernel/net/sched/sch_gred + kernel/net/sched/sch_hfsc + kernel/net/sched/sch_htb + kernel/net/sched/sch_ingress + kernel/net/sched/sch_multiq + kernel/net/sched/sch_netem + kernel/net/sched/sch_prio + kernel/net/sched/sch_red + kernel/net/sched/sch_sfq + kernel/net/sched/sch_tbf + kernel/net/sched/sch_teql + kernel/net/sctp/sctp # Support for the SCTP protocol (RFC2960) + kernel/net/sunrpc/auth_gss/auth_rpcgss + kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5 + kernel/net/sunrpc/auth_gss/rpcsec_gss_spkm3 + kernel/net/sunrpc/sunrpc + 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 + kernel/sound/ac97_bus + kernel/sound/aoa/codecs/snd-aoa-codec-onyx + kernel/sound/aoa/codecs/snd-aoa-codec-tas + kernel/sound/aoa/codecs/snd-aoa-codec-toonie + kernel/sound/aoa/core/snd-aoa # PowerMac, Apple Onboard Audio + kernel/sound/aoa/fabrics/snd-aoa-fabric-layout + kernel/sound/aoa/soundbus/i2sbus/snd-aoa-i2sbus + kernel/sound/aoa/soundbus/snd-aoa-soundbus + kernel/sound/core/oss/snd-mixer-oss # Mixer OSS emulation for ALSA. + kernel/sound/core/oss/snd-pcm-oss # PCM OSS emulation for ALSA. + kernel/sound/core/seq/oss/snd-seq-oss # OSS-compatible sequencer module + kernel/sound/core/seq/snd-seq # Advanced Linux Sound Architecture sequencer. + kernel/sound/core/seq/snd-seq-device # ALSA sequencer device management + kernel/sound/core/seq/snd-seq-dummy # ALSA sequencer MIDI-through client + kernel/sound/core/seq/snd-seq-midi # Advanced Linux Sound Architecture sequencer MIDI synth. + kernel/sound/core/seq/snd-seq-midi-emul # Advanced Linux Sound Architecture sequencer MIDI emulation. + kernel/sound/core/seq/snd-seq-midi-event # MIDI byte <-> sequencer event coder + kernel/sound/core/seq/snd-seq-virmidi # Virtual Raw MIDI client on Sequencer + kernel/sound/core/snd # Advanced Linux Sound Architecture driver for soundcards. + kernel/sound/core/snd-hrtimer # HRTimer backend + kernel/sound/core/snd-hwdep # Hardware dependent layer + kernel/sound/core/snd-page-alloc # Memory allocator for ALSA system. + kernel/sound/core/snd-pcm # Midlevel PCM code for ALSA. + kernel/sound/core/snd-rawmidi # Midlevel RawMidi code for ALSA. + kernel/sound/core/snd-timer # ALSA timer interface + kernel/sound/drivers/mpu401/snd-mpu401 # MPU-401 UART + kernel/sound/drivers/mpu401/snd-mpu401-uart # Routines for control of MPU-401 in UART mode + kernel/sound/drivers/opl3/snd-opl3-lib # Routines for control of AdLib FM cards (OPL2/OPL3/OPL4 chips) + kernel/sound/drivers/opl3/snd-opl3-synth # ALSA driver for OPL3 FM synth ++isa kernel/sound/drivers/opl4/snd-opl4-lib ++isa kernel/sound/drivers/opl4/snd-opl4-synth + kernel/sound/drivers/snd-dummy # Dummy soundcard (/dev/null) + kernel/sound/drivers/snd-mtpav # MOTU MidiTimePiece AV multiport MIDI + kernel/sound/drivers/snd-mts64 # ESI Miditerminal 4140 + kernel/sound/drivers/snd-portman2x4 # Portman 2x4 + 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 + kernel/sound/i2c/other/snd-pt2258 + kernel/sound/i2c/other/snd-tea575x-tuner # Routines for control of TEA5757/5759 Philips AM/FM radio tuner chips + kernel/sound/i2c/snd-cs8427 # IEC958 (S/PDIF) receiver & transmitter by Cirrus Logic + kernel/sound/i2c/snd-i2c # Generic i2c interface for ALSA ++isa kernel/sound/i2c/snd-tea6330t ++isa kernel/sound/isa/ad1816a/snd-ad1816a ++isa kernel/sound/isa/ad1848/snd-ad1848 ++isa kernel/sound/isa/ad1848/snd-ad1848-lib ++isa kernel/sound/isa/cs423x/snd-cs4231 ++isa kernel/sound/isa/cs423x/snd-cs4231-lib ++isa kernel/sound/isa/cs423x/snd-cs4232 ++isa kernel/sound/isa/cs423x/snd-cs4236 ++isa kernel/sound/isa/cs423x/snd-cs4236-lib ++isa kernel/sound/isa/es1688/snd-es1688 ++isa kernel/sound/isa/es1688/snd-es1688-lib ++isa kernel/sound/isa/gus/snd-gus-lib ++isa kernel/sound/isa/gus/snd-gusclassic ++isa kernel/sound/isa/gus/snd-gusextreme ++isa kernel/sound/isa/gus/snd-gusmax ++isa kernel/sound/isa/gus/snd-interwave ++isa kernel/sound/isa/gus/snd-interwave-stb ++isa kernel/sound/isa/msnd/snd-msnd-classic ++isa kernel/sound/isa/msnd/snd-msnd-lib ++isa kernel/sound/isa/msnd/snd-msnd-pinnacle ++isa kernel/sound/isa/opti9xx/snd-miro ++isa kernel/sound/isa/opti9xx/snd-opti92x-ad1848 ++isa kernel/sound/isa/opti9xx/snd-opti92x-cs4231 ++isa kernel/sound/isa/opti9xx/snd-opti93x ++isa kernel/sound/isa/sb/snd-emu8000-synth ++isa kernel/sound/isa/sb/snd-es968 ++isa kernel/sound/isa/sb/snd-sb16 ++isa kernel/sound/isa/sb/snd-sb16-csp ++isa kernel/sound/isa/sb/snd-sb16-dsp ++isa kernel/sound/isa/sb/snd-sb8 ++isa kernel/sound/isa/sb/snd-sb8-dsp ++isa kernel/sound/isa/sb/snd-sbawe ++isa kernel/sound/isa/sb/snd-sb-common # ALSA lowlevel driver for Sound Blaster cards ++isa kernel/sound/isa/snd-adlib ++isa kernel/sound/isa/snd-als100 ++isa kernel/sound/isa/snd-azt2320 ++isa kernel/sound/isa/snd-cmi8330 ++isa kernel/sound/isa/snd-dt019x ++isa kernel/sound/isa/snd-es18xx ++isa kernel/sound/isa/snd-opl3sa2 ++isa kernel/sound/isa/snd-sc6000 ++isa kernel/sound/isa/snd-sgalaxy ++isa kernel/sound/isa/snd-sscape ++isa kernel/sound/isa/wavefront/snd-wavefront ++isa kernel/sound/isa/wss/snd-wss-lib +- kernel/sound/oss/ad1848 +- kernel/sound/oss/aedsp16 # Audio Excel DSP 16 Driver Version 1.3 +- kernel/sound/oss/kahlua # Kahlua VSA1 PCI Audio +- kernel/sound/oss/mpu401 +- kernel/sound/oss/opl3 +- kernel/sound/oss/msnd +- kernel/sound/oss/msnd_classic +- kernel/sound/oss/msnd_pinnacle +- kernel/sound/oss/pas2 +- kernel/sound/oss/pss # Module for PSS sound cards (based on AD1848, ADSP-2115 and ESC614). This module includes control of output amplifier and synth volume of the Beethoven ADSP-16 card (this may work with other PSS cards). +- kernel/sound/oss/sb_lib +- kernel/sound/oss/sb # OSS Soundblaster ISA PnP and legacy sound driver +- kernel/sound/oss/sound # OSS Sound subsystem +- kernel/sound/oss/sscape +- kernel/sound/oss/trix +- kernel/sound/oss/uart401 +- kernel/sound/oss/uart6850 +- kernel/sound/oss/v_midi + kernel/sound/pci/ac97/snd-ac97-codec # Universal interface for Audio Codec '97 + kernel/sound/pci/ali5451/snd-ali5451 # ALI M5451 + kernel/sound/pci/au88x0/snd-au8810 # Aureal vortex + kernel/sound/pci/au88x0/snd-au8820 # Aureal vortex + kernel/sound/pci/au88x0/snd-au8830 # Aureal vortex + kernel/sound/pci/aw2/snd-aw2 # Emagic Audiowerk 2 + kernel/sound/pci/ca0106/snd-ca0106 # SBLive! 24bit + kernel/sound/pci/cs46xx/snd-cs46xx # Cirrus Logic Sound Fusion CS46XX + kernel/sound/pci/cs5535audio/snd-cs5535audio # Driver for audio on multifunction CS5535 companion device + kernel/sound/pci/ctxfi/snd-ctxfi # CreativeLabs SB X-Fi (emu20k1/emu20k2) + kernel/sound/pci/echoaudio/snd-darla20 # Echoaudio Darla20 + kernel/sound/pci/echoaudio/snd-darla24 # Echoaudio Darla24 + kernel/sound/pci/echoaudio/snd-echo3g # Echoaudio Echo 3G + kernel/sound/pci/echoaudio/snd-gina20 # Echoaudio Gina20 + kernel/sound/pci/echoaudio/snd-gina24 # Echoaudio Gina24 + kernel/sound/pci/echoaudio/snd-indigodj # Echoaudio Indigo DJ + kernel/sound/pci/echoaudio/snd-indigo # Echoaudio Indigo + kernel/sound/pci/echoaudio/snd-indigodjx + kernel/sound/pci/echoaudio/snd-indigoio # Echoaudio Indigo IO + kernel/sound/pci/echoaudio/snd-indigoiox + kernel/sound/pci/echoaudio/snd-layla20 # Echoaudio Layla20 + kernel/sound/pci/echoaudio/snd-layla24 # Echoaudio Layla24 + kernel/sound/pci/echoaudio/snd-mia # Echoaudio Mia + kernel/sound/pci/echoaudio/snd-mona # Echoaudio Mona + kernel/sound/pci/emu10k1/snd-emu10k1 # EMU10K1 + kernel/sound/pci/emu10k1/snd-emu10k1-synth # Routines for control of EMU10K1 WaveTable synth + kernel/sound/pci/emu10k1/snd-emu10k1x # EMU10K1X + kernel/sound/pci/hda/snd-hda-codec # HD-audio/modem codec core + kernel/sound/pci/hda/snd-hda-codec-analog # Analog Device HD-audio codecs + kernel/sound/pci/hda/snd-hda-codec-atihdmi # ATI/AMD HD-audio (HDMI) codecs + kernel/sound/pci/hda/snd-hda-codec-ca0110 # CreativeLabs HD-audio codecs + kernel/sound/pci/hda/snd-hda-codec-cirrus + kernel/sound/pci/hda/snd-hda-codec-cmedia # C-Media HD-audio codecs + kernel/sound/pci/hda/snd-hda-codec-conexant # Conexant HD-audio codecs + kernel/sound/pci/hda/snd-hda-codec-idt # IDT/Sigmatel HD-audio codecs + kernel/sound/pci/hda/snd-hda-codec-intelhdmi # Intel HD-audio (HDMI) codecs + kernel/sound/pci/hda/snd-hda-codec-nvhdmi # Nvidia HD-audio (HDMI) codecs + kernel/sound/pci/hda/snd-hda-codec-realtek # Realtek HD-audio codecs + kernel/sound/pci/hda/snd-hda-codec-si3054 # SI-compatible HD-audio modem codecs + kernel/sound/pci/hda/snd-hda-codec-via # VIA HD-audio codecs + kernel/sound/pci/hda/snd-hda-intel # Intel HD-audio/modem controller + kernel/sound/pci/ice1712/snd-ice1712 # ICEnsemble ICE1712 (Envy24) + kernel/sound/pci/ice1712/snd-ice1724 # ICEnsemble ICE1724 (Envy24HT) + kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx # ICEnsemble ICE17xx <-> AK4xxx AD/DA chip interface + kernel/sound/pci/korg1212/snd-korg1212 # korg1212 +- kernel/sound/pci/lx6464es/snd-lx6464es + kernel/sound/pci/mixart/snd-mixart # Digigram miXart + kernel/sound/pci/nm256/snd-nm256 # NeoMagic NM256AV/ZX + kernel/sound/pci/oxygen/snd-hifier # TempoTec HiFier Fantasia + kernel/sound/pci/oxygen/snd-oxygen # C-Media 8788 (Oxygen) + kernel/sound/pci/oxygen/snd-oxygen-lib # Oxygen + kernel/sound/pci/oxygen/snd-virtuoso # ASUS Virtuoso 100/200 (Xonar) + kernel/sound/pci/pcxhr/snd-pcxhr # Digigram pcxhr + kernel/sound/pci/riptide/snd-riptide + kernel/sound/pci/rme9652/snd-hdspm # RME Hammerfall DSP MADI + kernel/sound/pci/rme9652/snd-hdsp # RME Hammerfall DSP + kernel/sound/pci/rme9652/snd-rme9652 # RME Digi9652/Digi9636 + kernel/sound/pci/snd-ad1889 # Analog Devices 1889 + kernel/sound/pci/snd-als300 # Avance Logic ALS300 +- kernel/sound/pci/snd-als4000 # Avance Logic ALS4000 + kernel/sound/pci/snd-atiixp # ATI IXP AC97 controller + kernel/sound/pci/snd-atiixp-modem # ATI IXP MC97 controller + kernel/sound/pci/snd-azt3328 # Aztech AZF3328 (PCI168) + kernel/sound/pci/snd-bt87x # Brooktree Bt87x audio driver + kernel/sound/pci/snd-cmipci # C-Media CMI8x38 PCI + kernel/sound/pci/snd-cs4281 # Cirrus Logic CS4281 +- kernel/sound/pci/snd-cs5530 + kernel/sound/pci/snd-ens1370 # Ensoniq AudioPCI ES1370 + kernel/sound/pci/snd-ens1371 # Ensoniq/Creative AudioPCI ES1371+ + kernel/sound/pci/snd-es1938 # ESS Solo-1 + kernel/sound/pci/snd-es1968 # ESS Maestro + kernel/sound/pci/snd-fm801 # ForteMedia FM801 + kernel/sound/pci/snd-intel8x0 # Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; SiS 7012; Ali 5455 + kernel/sound/pci/snd-intel8x0m # Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440 modem + kernel/sound/pci/snd-maestro3 # ESS Maestro3 PCI + kernel/sound/pci/snd-rme32 # RME Digi32, Digi32/8, Digi32 PRO + kernel/sound/pci/snd-rme96 # RME Digi96, Digi96/8, Digi96/8 PRO, Digi96/8 PST, Digi96/8 PAD + kernel/sound/pci/snd-sis7019 + kernel/sound/pci/snd-sonicvibes # S3 SonicVibes PCI + kernel/sound/pci/snd-via82xx-modem # VIA VT82xx modem + kernel/sound/pci/snd-via82xx # VIA VT82xx audio + kernel/sound/pci/trident/snd-trident # Trident 4D-WaveDX/NX & SiS SI7018 + kernel/sound/pci/vx222/snd-vx222 # Digigram VX222 V2/Mic + kernel/sound/pci/ymfpci/snd-ymfpci # Yamaha DS-XG PCI ++isa kernel/sound/pcmcia/pdaudiocf/snd-pdaudiocf # Sound Core PDAudioCF ++isa kernel/sound/pcmcia/vx/snd-vxpocket # Digigram VXpocket/440 +- kernel/sound/ppc/snd-mpc52xx-ac97 # for Efika mpc52xx + kernel/sound/ppc/snd-powermac # for all older PowerMacs + kernel/sound/ppc/snd_ps3 # PS3 sound driver + kernel/sound/soundcore # Core sound module + kernel/sound/sound_firmware + kernel/sound/synth/emux/snd-emux-synth # Routines for control of EMU WaveTable chip + kernel/sound/synth/snd-util-mem # Generic memory management routines for soundcard memory allocation + kernel/sound/usb/caiaq/snd-usb-caiaq # Native Instruments USB audio + kernel/sound/usb/snd-usb-audio # USB Audio + kernel/sound/usb/snd-usb-lib # USB Audio/MIDI helper module + kernel/sound/usb/snd-usbmidi-lib + kernel/sound/usb/usx2y/snd-usb-usx2y # TASCAM US-X2Y Version 0.7.2 +- kernel/sound/usb/usx2y/snd-usb-us122l diff --git a/sysctl.tar.bz2 b/sysctl.tar.bz2 new file mode 100644 index 00000000..eb3efe7c --- /dev/null +++ b/sysctl.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c486da73fb5a20a18ab975da3ff78a6c6c06165e0e16634606807364b170993b +size 775